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

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

.main-nav {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.nav-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-content-offset {
    flex: 1;
    padding: 8rem 3rem 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
    max-width: 600px;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.hero-content-offset p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.cta-primary {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.hero-image-shifted {
    flex: 1;
    position: relative;
    margin-top: 6rem;
    margin-right: -5rem;
    background-color: #e8ebe8;
}

.hero-image-shifted img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
}

.story-intro {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.story-block {
    max-width: 700px;
    margin: 0 auto 0 8rem;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #444;
}

.story-block p {
    margin-bottom: 1.5rem;
}

.problem-amplification {
    padding: 5rem 2rem;
    background-color: #f0f4f0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.offset-text-block {
    max-width: 650px;
    margin-left: 15%;
    margin-bottom: 3rem;
}

.offset-text-block h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-left: 4px solid #e74c3c;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.solution-hint {
    margin-left: auto;
    margin-right: 10%;
    max-width: 400px;
    padding: 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
    font-size: 1.4rem;
    border-radius: 8px;
    text-align: center;
}

.insight-section {
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    background-color: #ffffff;
}

.insight-visual {
    flex: 1;
    margin-left: 5%;
    background-color: #f5f5f5;
}

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

.insight-text {
    flex: 1;
    padding-right: 5%;
}

.insight-text h3 {
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.insight-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

.services-asymmetric {
    padding: 7rem 2rem;
    background-color: #fafafa;
}

.services-asymmetric h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 4rem;
    margin-left: 10%;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 0 2rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 3rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

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

.offset-left {
    margin-top: 3rem;
}

.offset-right {
    margin-top: -2rem;
}

.offset-center {
    margin-top: 1rem;
}

.offset-left-small {
    margin-top: 2rem;
}

.offset-right-large {
    margin-top: -3rem;
}

.service-image {
    height: 250px;
    overflow: hidden;
    background-color: #e8ebe8;
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: #2c5f2d;
    padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f2d;
    padding: 1rem 1.5rem;
}

.select-service {
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1e4620;
}

.select-service:active {
    background-color: #163517;
}

.trust-building {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto 0 12%;
}

.trust-content h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.trust-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
}

.trust-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.fact {
    background-color: #f0f4f0;
    padding: 1.5rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    color: #2c5f2d;
    flex: 1 1 250px;
}

.testimonials-inline {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.testimonial {
    max-width: 700px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.offset-quote {
    margin-left: 8%;
}

.offset-quote-right {
    margin-left: auto;
    margin-right: 8%;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
}

.cta-section-primary {
    padding: 5rem 2rem;
    background-color: #2c5f2d;
    text-align: center;
}

.cta-content-irregular {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

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

.cta-content-irregular p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.order-form-asymmetric {
    max-width: 700px;
    margin: 0 auto 0 15%;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.form-header h3 {
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

#selectedServiceDisplay {
    font-size: 1rem;
    color: #7f8c8d;
}

#selectedServiceDisplay.active {
    color: #2c5f2d;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.submit-btn:active {
    background-color: #163517;
}

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.benefits-reveal {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.benefits-reveal h3 {
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 4rem;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.benefit-item h4 {
    font-size: 1.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
}

.final-cta {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #ffffff;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1 1 200px;
}

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

.footer-section p,
.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #ffffff;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    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-color: #34495e;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #1e4620;
}

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

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

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

    .hero-content-offset {
        padding: 4rem 2rem;
        max-width: 100%;
    }

    .hero-image-shifted {
        margin-top: 0;
        margin-right: 0;
        min-height: 400px;
    }

    .story-block {
        margin: 0 auto;
    }

    .offset-text-block {
        margin-left: 5%;
    }

    .solution-hint {
        margin-right: 5%;
    }

    .insight-section {
        flex-direction: column;
    }

    .insight-visual {
        margin-left: 0;
    }

    .order-form-asymmetric {
        margin: 0 auto;
    }

    .trust-content {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content-offset h1 {
        font-size: 2.5rem;
    }

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

    .service-card {
        margin-top: 0 !important;
    }

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

    .benefit-item {
        flex: 1 1 100%;
    }
}