* {
    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: #fff;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.75rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.ad-disclosure p {
    margin: 0;
}

.nav-offset {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 0 5%;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-cta {
    background: #3498db;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #2980b9;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    padding: 80px 5% 60px;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    display: flex;
    align-items: center;
    padding-right: 60px;
    z-index: 2;
}

.hero-text-block {
    max-width: 580px;
    margin-left: 8%;
}

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

.hero-text-block p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: #555;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #2c3e50;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, background 0.3s;
}

.cta-primary:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 45%;
    height: 70%;
    transform: rotate(-3deg);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.intro-staggered {
    display: flex;
    padding: 120px 5% 100px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-left {
    flex: 1;
    padding-top: 40px;
}

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-left p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.intro-right-offset {
    flex: 1;
    padding-left: 40px;
    border-left: 3px solid #3498db;
    margin-top: 80px;
}

.intro-right-offset p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.problem-section-irregular {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 5%;
    background: #f8f9fa;
    gap: 40px;
    position: relative;
}

.problem-card-1 {
    flex: 1 1 400px;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    transform: translateY(-30px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.problem-card-1 h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.problem-card-1 p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.problem-card-2 {
    flex: 1 1 350px;
    background: #3498db;
    color: #fff;
    padding: 45px;
    border-radius: 8px;
    transform: translateY(20px);
    box-shadow: 0 10px 30px rgba(52,152,219,0.3);
}

.problem-card-2 p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.problem-visual {
    flex: 1 1 300px;
    transform: translateX(-20px);
}

.problem-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.services-grid-asymmetric {
    padding: 120px 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header-offset {
    margin-left: 15%;
    margin-bottom: 70px;
}

.services-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: #666;
}

.service-card {
    background: #fff;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card-large {
    max-width: 70%;
    margin-left: 5%;
}

.service-card-offset-1 {
    max-width: 60%;
    margin-left: 35%;
}

.service-card-offset-2 {
    max-width: 65%;
    margin-left: 10%;
}

.service-card-offset-3 {
    max-width: 58%;
    margin-left: 40%;
}

.service-card-offset-4 {
    max-width: 68%;
    margin-left: 18%;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.service-select-btn {
    background: #2c3e50;
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

.trust-section-overlap {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    background: #f8f9fa;
    align-items: center;
    position: relative;
}

.trust-image {
    flex: 1;
    transform: translateX(30px);
}

.trust-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.trust-content {
    flex: 1;
    padding-left: 40px;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.trust-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonials-stacked {
    padding: 100px 5% 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-stacked h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
    font-weight: 700;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 40px 50px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.testimonial-offset-1 {
    margin-left: 0;
    max-width: 75%;
}

.testimonial-offset-2 {
    margin-left: 20%;
    max-width: 70%;
}

.testimonial-offset-3 {
    margin-left: 10%;
    max-width: 78%;
}

.testimonial-card p {
    font-size: 1.15rem;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

.approach-section {
    padding: 100px 5%;
    background: #2c3e50;
    color: #fff;
}

.approach-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.approach-item {
    flex: 1 1 300px;
    padding: 30px;
}

.approach-item-1 {
    transform: translateY(-20px);
}

.approach-item-2 {
    transform: translateY(15px);
}

.approach-item-3 {
    transform: translateY(-10px);
}

.approach-item h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 600;
}

.approach-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ecf0f1;
}

.benefits-irregular {
    padding: 100px 5% 120px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-header {
    margin-bottom: 60px;
    text-align: center;
}

.benefits-header h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    font-weight: 700;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-block {
    background: #f8f9fa;
    padding: 45px;
    border-radius: 10px;
    flex: 1 1 300px;
}

.benefit-offset-1 {
    transform: translateX(-30px);
}

.benefit-offset-2 {
    transform: translateX(20px) translateY(30px);
}

.benefit-offset-3 {
    transform: translateX(-15px) translateY(15px);
}

.benefit-block h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.benefit-block p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.form-section-asymmetric {
    padding: 120px 5% 100px;
    background: #f8f9fa;
    max-width: 1300px;
    margin: 0 auto;
}

.form-intro {
    max-width: 600px;
    margin-bottom: 50px;
    margin-left: 10%;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.contact-form {
    max-width: 650px;
    margin-left: 25%;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-submit-btn {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 16px 50px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    width: 100%;
}

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

.cta-sticky-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-sticky-content p {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 600;
}

.cta-sticky-btn {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.footer-asymmetric {
    background: #1a252f;
    color: #ecf0f1;
    padding: 80px 5% 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-col-1 {
    flex: 1.5 1 280px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

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

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

.footer-col ul li {
    margin-bottom: 12px;
}

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 25px 5%;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-accept {
    background: #3498db;
    color: #fff;
}

.cookie-reject {
    background: #7f8c8d;
    color: #fff;
}

.cookie-btn:hover {
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 5%;
    }

    .hero-text-block {
        margin-left: 0;
        max-width: 100%;
    }

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

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        transform: none;
        margin-top: 40px;
    }

    .intro-staggered {
        flex-direction: column;
        gap: 40px;
    }

    .intro-right-offset {
        margin-top: 0;
        padding-left: 20px;
    }

    .service-card-large,
    .service-card-offset-1,
    .service-card-offset-2,
    .service-card-offset-3,
    .service-card-offset-4 {
        max-width: 100%;
        margin-left: 0;
    }

    .trust-section-overlap {
        flex-direction: column;
    }

    .trust-image {
        transform: none;
    }

    .testimonial-offset-1,
    .testimonial-offset-2,
    .testimonial-offset-3 {
        margin-left: 0;
        max-width: 100%;
    }

    .contact-form {
        margin-left: 0;
    }

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;
        margin-top: 15px;
        justify-content: center;
    }

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

    .services-header-offset {
        margin-left: 0;
    }

    .services-header-offset h2 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        flex-direction: column;
    }
}