* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.header-asymmetric {
    position: relative;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-block {
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.5rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #f8f9fa;
}

.hero-offset {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
    overflow: hidden;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: #ecf0f1;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-text-block {
    position: relative;
    z-index: 5;
    max-width: 650px;
    padding: 4rem 2rem 4rem 8%;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: #34495e;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.intro-asymmetric {
    max-width: 1400px;
    margin: 0 auto 8rem;
    padding: 0 2rem;
}

.content-wrapper {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.intro-left {
    flex: 0 0 45%;
    transform: translateY(-3rem);
    background: #ecf0f1;
}

.intro-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-right {
    flex: 1;
}

.intro-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-right p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-cards-offset {
    max-width: 1400px;
    margin: 0 auto 8rem;
    padding: 0 2rem;
}

.section-header-left {
    margin-bottom: 4rem;
    max-width: 600px;
}

.section-header-left h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-left p {
    font-size: 1.15rem;
    color: #7f8c8d;
}

.cards-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    flex: 0 0 45%;
    height: 350px;
    object-fit: cover;
    background: #ecf0f1;
}

.card-content {
    flex: 1;
    padding: 2.5rem;
}

.card-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.card-content p {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.card-elevated {
    transform: translateX(3rem);
}

.card-offset-right {
    transform: translateX(5rem);
}

.card-offset-left {
    transform: translateX(-2rem);
}

.btn-service-select {
    padding: 0.85rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.trust-section-diagonal {
    position: relative;
    padding: 6rem 2rem;
    margin-bottom: 8rem;
    overflow: hidden;
}

.diagonal-bg {
    position: absolute;
    top: -10%;
    left: -5%;
    right: -5%;
    bottom: -10%;
    background: #34495e;
    transform: rotate(-2deg);
    z-index: 0;
}

.trust-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.trust-content a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
}

.trust-content a:hover {
    color: #5dade2;
    border-bottom-color: #5dade2;
}

.form-section-offset {
    max-width: 1400px;
    margin: 0 auto 8rem;
    padding: 0 2rem;
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 10%;
    background: #f8f9fa;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.form-header p {
    font-size: 1rem;
    color: #7f8c8d;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input {
    padding: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1.1rem 2.5rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.disclaimer-offset {
    max-width: 1100px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.disclaimer-content {
    background: #fef9e7;
    border-left: 4px solid #f39c12;
    padding: 2rem 2.5rem;
    transform: translateX(-4rem);
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #34495e;
    line-height: 1.7;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333333;
}

.footer-references h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references ol li {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-references ol li a {
    color: #3498db;
    text-decoration: none;
}

.footer-references ol li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.about-hero-offset {
    max-width: 1400px;
    margin: 4rem auto 6rem;
    padding: 0 2rem;
}

.about-content-wrap {
    max-width: 800px;
    margin-left: 10%;
}

.about-content-wrap h1 {
    font-size: 3.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.about-content-wrap p {
    font-size: 1.2rem;
    color: #34495e;
    line-height: 1.7;
}

.about-story-asymmetric {
    max-width: 1400px;
    margin: 0 auto 8rem;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.story-block-left {
    flex: 0 0 48%;
    transform: translateY(2rem);
    background: #ecf0f1;
}

.story-block-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-block-right {
    flex: 1;
}

.story-block-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-block-right p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-diagonal {
    position: relative;
    background: #ecf0f1;
    padding: 6rem 2rem;
    margin-bottom: 8rem;
    transform: skewY(-2deg);
}

.values-wrapper {
    transform: skewY(2deg);
    max-width: 1400px;
    margin: 0 auto;
}

.values-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
}

.values-grid-offset {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.value-card {
    flex: 1;
    max-width: 350px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card.offset-up {
    transform: translateY(-2rem);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.7;
}

.team-approach-offset {
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.approach-content {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.approach-image {
    flex: 0 0 45%;
    transform: translateY(-2rem);
    background: #ecf0f1;
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-hero {
    max-width: 1400px;
    margin: 4rem auto 6rem;
    padding: 0 2rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-hero p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.services-detailed-offset {
    max-width: 1400px;
    margin: 0 auto 8rem;
    padding: 0 2rem;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 0 0 48%;
    background: #ecf0f1;
}

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.pricing-display {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-display .price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.pricing-display .price-note {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.consultation-cta-offset {
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.cta-content {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    transform: translateX(5%);
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-hero-offset {
    max-width: 1400px;
    margin: 4rem auto 6rem;
    padding: 0 2rem;
    transform: translateX(-5%);
}

.contact-hero-offset h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-hero-offset p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.contact-details-asymmetric {
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.contact-block-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.contact-info-card.offset-right {
    transform: translateX(2rem);
}

.contact-info-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info-card p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.contact-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.75rem;
}

.contact-visual {
    flex: 0 0 40%;
    background: #ecf0f1;
    transform: translateY(3rem);
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.additional-contact-offset {
    max-width: 1100px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.additional-info {
    background: #ecf0f1;
    padding: 3rem;
    border-radius: 8px;
    transform: translateX(8%);
}

.additional-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.additional-info p {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.additional-info a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
}

.additional-info a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.thanks-hero-offset {
    max-width: 1400px;
    margin: 4rem auto 6rem;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #34495e;
    line-height: 1.7;
}

.confirmation-details {
    background: #e8f8f5;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #27ae60;
}

.confirmation-details p {
    margin-bottom: 0.75rem;
}

.confirmation-details p:last-child {
    margin-bottom: 0;
}

.next-steps-block {
    margin: 2.5rem 0;
}

.next-steps-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.next-steps-block ul {
    padding-left: 1.5rem;
}

.next-steps-block ul li {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.btn-return,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-return {
    background: #3498db;
    color: #ffffff;
}

.btn-return:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.thanks-visual {
    flex: 0 0 40%;
    background: #ecf0f1;
    transform: translateY(-2rem);
}

.thanks-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.legal-content {
    max-width: 900px;
    margin: 4rem auto 6rem;
    padding: 0 2rem;
}

.legal-wrapper h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-wrapper h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-wrapper h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-wrapper p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-wrapper ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-wrapper ul li {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-wrapper a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
}

.legal-wrapper a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

@media (max-width: 1024px) {
    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .content-wrapper,
    .about-story-asymmetric,
    .approach-content,
    .service-detail-block,
    .contact-details-asymmetric,
    .thanks-hero-offset {
        flex-direction: column;
    }

    .intro-left,
    .story-block-left,
    .approach-image,
    .service-visual,
    .contact-visual,
    .thanks-visual {
        flex: 1;
        width: 100%;
        transform: none;
    }

    .card-elevated,
    .card-offset-right,
    .card-offset-left {
        transform: none;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card img {
        width: 100%;
        height: 250px;
    }

    .values-grid-offset {
        flex-direction: column;
    }

    .value-card.offset-up {
        transform: none;
    }

    .disclaimer-content,
    .cta-content,
    .additional-info {
        transform: none;
    }
}

@media (max-width: 768px) {
    .main-nav {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-text-block {
        padding: 2rem;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .hero-image-wrap {
        width: 100%;
        height: 300px;
        position: relative;
    }

    .hero-offset {
        flex-direction: column;
        min-height: auto;
    }
}