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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #357abd;
}

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

.btn-reject:hover {
    background-color: #333333;
}

.header-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-offset {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ad-notice {
    font-size: 11px;
    color: #666666;
    background-color: #f0f0f0;
    padding: 6px 12px;
    border-radius: 4px;
}

.nav-offset ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-offset a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-offset a:hover {
    color: #4a90e2;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 80px;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 15%;
    width: 60%;
    height: 100%;
    z-index: 1;
    background-color: #e8e8e8;
}

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

.hero-text-offset {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    padding: 60px 48px;
    max-width: 520px;
    margin-left: 60px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.hero-text-offset h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.highlight {
    color: #4a90e2;
}

.hero-subtext {
    font-size: 18px;
    color: #555555;
    line-height: 1.5;
}

.story-section {
    padding: 80px 60px;
    background-color: #f5f5f5;
}

.story-content-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.text-block-1 {
    max-width: 680px;
    margin-left: 0;
}

.text-block-1 h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.3;
}

.text-block-1 p {
    font-size: 18px;
    color: #444444;
    line-height: 1.7;
}

.image-block-float {
    align-self: flex-end;
    width: 50%;
    max-width: 600px;
    background-color: #d0d0d0;
}

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

.text-block-2 {
    max-width: 720px;
    margin-left: 120px;
}

.text-block-2 p {
    font-size: 17px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.problem-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.problem-card {
    background-color: #2a2a2a;
    padding: 40px;
    border-left: 4px solid #4a90e2;
}

.problem-1 {
    max-width: 600px;
    margin-left: 0;
}

.problem-2 {
    max-width: 600px;
    margin-left: auto;
    margin-right: 80px;
}

.problem-3 {
    max-width: 600px;
    margin-left: 160px;
}

.problem-card h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 16px;
}

.problem-card p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
}

.insight-reveal {
    padding: 100px 60px;
    background-color: #ffffff;
}

.insight-wrapper-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-text {
    flex: 1;
    padding-right: 40px;
}

.insight-text h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 28px;
    line-height: 1.3;
}

.insight-text p {
    font-size: 17px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-inline {
    margin-top: 32px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.insight-image-overlap {
    flex: 0 0 450px;
    position: relative;
    margin-top: -60px;
    background-color: #d8d8d8;
}

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

.trust-building {
    padding: 100px 60px;
    background-color: #f9f9f9;
}

.trust-container-offset {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-container-offset h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
}

.testimonials-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.testimonial-left {
    max-width: 600px;
    margin-left: 0;
}

.testimonial-right {
    max-width: 600px;
    margin-left: auto;
}

.testimonial-center {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial p {
    font-size: 16px;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #666666;
    font-weight: 600;
}

.services-selection {
    padding: 100px 60px;
    background-color: #ffffff;
}

.services-intro-offset {
    max-width: 800px;
    margin: 0 0 60px 80px;
}

.services-intro-offset h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.services-intro-offset p {
    font-size: 18px;
    color: #555555;
}

.services-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

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

.service-card-3 {
    flex: 1 1 calc(35% - 20px);
}

.service-card-4 {
    flex: 1 1 calc(65% - 20px);
}

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

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

.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background-color: #d8d8d8;
}

.service-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin: 24px 24px 12px 24px;
}

.service-card p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    margin: 0 24px 20px 24px;
    flex: 1;
}

.price-reveal {
    font-size: 28px;
    font-weight: 700;
    color: #4a90e2;
    margin: 0 24px 20px 24px;
}

.btn-select-service {
    margin: 0 24px 24px 24px;
    padding: 14px 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #4a90e2;
    transform: scale(1.02);
}

.form-section {
    padding: 100px 60px;
    background-color: #f5f5f5;
}

.form-wrapper-asymmetric {
    max-width: 700px;
    margin: 0 auto 0 120px;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 17px;
    color: #555555;
}

.service-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #357abd;
}

.btn-submit:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.final-cta-section {
    padding: 100px 60px;
    background-color: #2a2a2a;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
}

.final-cta-content p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 40px;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2a2a2a;
}

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

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

.disclaimer-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
}

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

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4a90e2;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888888;
}

@media (max-width: 768px) {
    .header-asymmetric {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-offset {
        flex-direction: column;
        gap: 16px;
    }

    .nav-offset ul {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-asymmetric {
        min-height: 500px;
    }

    .hero-image-wrapper {
        left: 0;
        width: 100%;
    }

    .hero-text-offset {
        margin: 20px;
        padding: 40px 28px;
    }

    .hero-text-offset h1 {
        font-size: 32px;
    }

    .story-content-irregular {
        gap: 30px;
    }

    .text-block-2 {
        margin-left: 0;
    }

    .image-block-float {
        width: 100%;
    }

    .problem-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }

    .insight-wrapper-asymmetric {
        flex-direction: column;
    }

    .insight-image-overlap {
        margin-top: 0;
        width: 100%;
    }

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

    .service-card {
        flex: 1 1 100% !important;
    }

    .form-wrapper-asymmetric {
        margin-left: 0;
    }

    .service-form {
        padding: 32px;
    }
}