* {
    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.7;
    color: #2c3e2c;
    background: #fdfdf9;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(28, 40, 28, 0.97);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

.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: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #5a8f5a;
    color: white;
}

.btn-cookie.accept:hover {
    background: #4a7a4a;
}

.btn-cookie.reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(92, 143, 92, 0.1);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3a5a3a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

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

.nav-links a:hover {
    color: #5a8f5a;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.btn-sticky {
    background: #5a8f5a;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(90, 143, 90, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #4a7a4a;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(90, 143, 90, 0.5);
}

.hero-visual {
    position: relative;
    height: 85vh;
    margin-top: 70px;
    overflow: hidden;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.hero-sub {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 300;
}

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

.story-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.9;
    text-align: center;
}

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

.emphasis-line {
    font-size: 1.6rem;
    font-weight: 600;
    color: #3a5a3a;
    margin-top: 2rem;
}

.problem-block {
    padding: 5rem 2rem;
    background: white;
}

.problem-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.problem-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    background: #f4f7f4;
    border-left: 4px solid #5a8f5a;
}

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3a5a3a;
}

.problem-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a6a4a;
}

.insight-reveal {
    padding: 6rem 2rem;
    background: #fdfdf9;
}

.insight-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-img {
    width: 45%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e2c;
    line-height: 1.3;
}

.insight-text p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.scenario-block {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e8f3e8 0%, #f9faf6 100%);
}

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

.scenario-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c3e2c;
}

.scenario-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.cta-inline {
    margin-top: 3rem;
    text-align: center;
}

.btn-primary {
    background: #5a8f5a;
    color: white;
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #4a7a4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(90, 143, 90, 0.3);
}

.trust-social {
    padding: 5rem 2rem;
    background: white;
}

.testimonials-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 2.5rem;
    background: #f9faf6;
    border-radius: 8px;
    border-top: 3px solid #5a8f5a;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #3a5a3a;
}

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

.education-layer {
    padding: 6rem 2rem;
    background: #fdfdf9;
}

.edu-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-direction: row-reverse;
}

.edu-text {
    flex: 1;
}

.edu-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e2c;
}

.edu-text p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.edu-img {
    width: 45%;
    object-fit: cover;
    border-radius: 8px;
}

.benefits-visual {
    padding: 6rem 2rem;
    background: white;
}

.benefits-visual h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: #2c3e2c;
}

.benefits-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    padding: 2.5rem 2rem;
    background: #f4f7f4;
    border-radius: 8px;
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #3a5a3a;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a6a4a;
}

.urgency-frame {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #3a5a3a 0%, #4a7a4a 100%);
    color: white;
}

.urgency-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.urgency-line {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.urgency-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
}

.offer-reveal {
    padding: 7rem 2rem;
    background: #fdfdf9;
}

.offer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.offer-container h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #2c3e2c;
}

.offer-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    color: #4a6a4a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.6rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e2c;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a6a4a;
}

.service-detail {
    font-size: 0.95rem;
    color: #6a8a6a;
}

.price {
    font-size: 1.9rem;
    font-weight: 700;
    color: #5a8f5a;
    margin: 1.5rem 1.5rem 2rem;
}

.cta-strong {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e8f3e8 0%, #d4e8d4 100%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e2c;
}

.cta-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #3a5a3a;
}

.btn-large {
    background: #5a8f5a;
    color: white;
    padding: 1.3rem 3rem;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: #4a7a4a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(90, 143, 90, 0.4);
}

.form-section {
    padding: 7rem 2rem;
    background: white;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e2c;
}

.form-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4a6a4a;
    margin-bottom: 3rem;
}

.contact-form {
    background: #f9faf6;
    padding: 3rem;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #3a5a3a;
    font-size: 1rem;
}

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

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

.btn-submit {
    width: 100%;
    background: #5a8f5a;
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-trust {
    padding: 4rem 2rem;
    background: #f4f7f4;
}

.trust-badges {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.badge-item p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3a5a3a;
}

.footer {
    background: #2c3e2c;
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #a8d5a8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-sub {
        font-size: 1.2rem;
    }

    .insight-container,
    .edu-split {
        flex-direction: column;
    }

    .insight-img,
    .edu-img {
        width: 100%;
    }

    .nav-links {
        gap: 1.2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

    .nav-content {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
    }

    .story-text {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}