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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a365d;
}

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

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

.nav-links a:hover {
    color: #2d3748;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 80px 60px;
    background-color: #f7fafc;
    position: relative;
}

.hero-content-offset {
    flex: 1;
    max-width: 580px;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #1a365d;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-lead {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background-color: #2c5282;
}

.hero-visual-offset {
    flex: 1;
    position: relative;
    margin-left: -40px;
    margin-top: -80px;
}

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

.intro-block-offset {
    display: flex;
    padding: 120px 60px;
    gap: 80px;
    align-items: center;
    background-color: #ffffff;
}

.narrow-content-left {
    flex: 2;
    max-width: 650px;
}

.narrow-content-left h2 {
    font-size: 38px;
    color: #1a365d;
    margin-bottom: 28px;
    font-weight: 700;
}

.narrow-content-left p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.stat-card-right {
    flex: 1;
    background-color: #edf2f7;
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
}

.stat-number {
    font-size: 72px;
    color: #2b6cb0;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 15px;
    color: #2d3748;
    line-height: 1.6;
}

.problem-amplification {
    padding: 100px 60px;
    background-color: #f7fafc;
}

.overlap-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    position: relative;
}

.text-block-overlap {
    flex: 1;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: 80px;
    z-index: 2;
}

.text-block-overlap h2 {
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.crisis-list li {
    padding: 18px 0;
    padding-left: 35px;
    font-size: 17px;
    color: #4a5568;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.crisis-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-size: 28px;
    font-weight: 700;
}

.crisis-list li:last-child {
    border-bottom: none;
}

.image-block-overlap {
    flex: 1;
    margin-top: -40px;
}

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

.approach-section {
    padding: 120px 60px;
    background-color: #ffffff;
}

.centered-heading {
    font-size: 42px;
    color: #1a365d;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 700;
}

.approach-grid-irregular {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-item {
    flex: 1;
    padding: 45px;
    background-color: #f7fafc;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.approach-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.approach-item.offset-down {
    margin-top: 60px;
}

.approach-item h3 {
    font-size: 22px;
    color: #1a365d;
    margin-bottom: 18px;
    font-weight: 600;
}

.approach-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.services-layout {
    padding: 100px 60px;
    background-color: #edf2f7;
}

.services-layout h2 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 70px;
    font-weight: 700;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.large {
    flex: 1 1 calc(60% - 15px);
}

.service-card.medium {
    flex: 1 1 calc(50% - 15px);
}

.service-card.small {
    flex: 1 1 calc(40% - 15px);
}

.service-card.offset-top {
    margin-top: 40px;
}

.service-card.offset-left {
    margin-left: 60px;
}

.service-visual {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #edf2f7;
}

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

.service-details {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 24px;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-details p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    color: #2b6cb0;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-select {
    padding: 14px 28px;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
}

.service-select:hover {
    background-color: #2c5282;
}

.testimonials-inline {
    padding: 100px 60px;
    background-color: #ffffff;
}

.testimonial {
    max-width: 800px;
    padding: 50px;
    background-color: #f7fafc;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 5px solid #2b6cb0;
}

.testimonial.offset-right {
    margin-left: auto;
    margin-right: 80px;
}

.testimonial.offset-left {
    margin-left: 80px;
    margin-right: auto;
}

.testimonial-text {
    font-size: 19px;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    color: #718096;
    font-weight: 600;
}

.form-section-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 70px;
    background-color: #f7fafc;
    align-items: center;
}

.form-container-offset {
    flex: 1;
    max-width: 550px;
}

.form-container-offset h2 {
    font-size: 38px;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    color: #2d3748;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2b6cb0;
}

.form-visual-offset {
    flex: 1;
    margin-top: -60px;
}

.form-visual-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.disclaimer-section {
    padding: 60px 60px;
    background-color: #edf2f7;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #718096;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background-color: #1a365d;
    color: #ffffff;
    padding: 60px 60px 30px;
}

.footer-grid {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 15px;
    color: #cbd5e0;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    font-size: 14px;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 25px 60px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 40px;
}

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

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #2b6cb0;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #2c5282;
}

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

.cookie-btn.reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.about-hero {
    padding: 100px 60px;
    background-color: #f7fafc;
}

.about-hero h1 {
    font-size: 48px;
    color: #1a365d;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-intro {
    font-size: 19px;
    color: #4a5568;
    max-width: 800px;
    line-height: 1.8;
}

.about-content {
    padding: 80px 60px;
    background-color: #ffffff;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-section h2 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-section p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-page {
    padding: 100px 60px;
    background-color: #f7fafc;
}

.contact-page h1 {
    font-size: 48px;
    color: #1a365d;
    margin-bottom: 60px;
    font-weight: 700;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1000px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    color: #1a365d;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 60px;
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 30px;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a365d;
    margin-top: 40px;
    margin-bottom: 18px;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    color: #2d3748;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 10px;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    background-color: #f7fafc;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #1a365d;
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 19px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 35px;
}

@media (max-width: 768px) {
    .main-nav {
        padding: 20px 30px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 50px 30px;
    }

    .hero-content-offset {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-content-offset h1 {
        font-size: 36px;
    }

    .hero-visual-offset {
        margin-left: 0;
        margin-top: 0;
        height: 400px;
    }

    .intro-block-offset {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .stat-card-right {
        margin-top: 0;
    }

    .overlap-container {
        flex-direction: column;
        gap: 30px;
    }

    .text-block-overlap {
        margin-top: 0;
        padding: 40px 30px;
    }

    .image-block-overlap {
        margin-top: 0;
    }

    .approach-grid-irregular {
        flex-direction: column;
    }

    .approach-item.offset-down {
        margin-top: 0;
    }

    .services-asymmetric {
        flex-direction: column;
    }

    .service-card.large,
    .service-card.medium,
    .service-card.small {
        flex: 1 1 100%;
    }

    .service-card.offset-top,
    .service-card.offset-left {
        margin-top: 0;
        margin-left: 0;
    }

    .testimonial.offset-left,
    .testimonial.offset-right {
        margin-left: 0;
        margin-right: 0;
    }

    .form-section-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

    .form-visual-offset {
        margin-top: 40px;
        height: 400px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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