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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.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;
}

.btn-accept {
    background: #4a7c2c;
    color: #fff;
}

.btn-accept:hover {
    background: #3d6820;
}

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2d5016;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2d5016;
    transition: all 0.3s;
}

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

.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a7c2c;
}

.hero-visual {
    margin-top: 80px;
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px;
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    max-width: 800px;
}

.hero-subtext {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-hero {
    display: inline-block;
    background: #fff;
    color: #2d5016;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.story-section {
    padding: 100px 40px;
    background: #fafafa;
}

.narrow-content {
    max-width: 750px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2d5016;
    line-height: 1.3;
}

.narrow-content p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.8;
}

.inline-image-wrapper {
    margin: 50px 0;
}

.inline-image {
    width: 100%;
    border-radius: 8px;
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 15px;
    font-size: 15px;
}

.problem-amplify {
    padding: 0;
    background: #fff;
}

.split-layout {
    display: flex;
    min-height: 600px;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2d5016;
    line-height: 1.3;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.split-visual {
    flex: 1;
    min-height: 600px;
}

.inline-cta {
    display: inline-block;
    margin-top: 20px;
    color: #4a7c2c;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 2px solid #4a7c2c;
    padding-bottom: 4px;
    transition: all 0.3s;
}

.inline-cta:hover {
    color: #2d5016;
    border-color: #2d5016;
}

.insight-reveal {
    padding: 100px 40px;
    background: #f5f5f5;
}

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

.label-tag {
    display: inline-block;
    background: #4a7c2c;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.centered-block h2 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #2d5016;
    line-height: 1.3;
}

.centered-block p {
    font-size: 19px;
    color: #444;
    line-height: 1.8;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d5016;
    color: #fff;
    padding: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

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

.sticky-container span {
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    background: #fff;
    color: #2d5016;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-sticky:hover {
    transform: scale(1.05);
}

.trust-build {
    padding: 90px 40px;
    background: #fff;
}

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

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: #fafafa;
    border-radius: 8px;
    text-align: center;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d5016;
}

.trust-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.testimonials-flow {
    padding: 80px 40px;
    background: linear-gradient(135deg, #3d6820 0%, #2d5016 100%);
}

.testimonial-block {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.testimonial-block.alt {
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-block blockquote {
    border-left: none;
    padding: 0;
    margin: 0;
}

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

.testimonial-block footer {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

.benefit-showcase {
    padding: 0;
    background: #fafafa;
}

.asymmetric-layout {
    display: flex;
    min-height: 650px;
}

.benefit-text {
    flex: 1.3;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-text h3 {
    font-size: 38px;
    margin-bottom: 35px;
    color: #2d5016;
}

.benefit-list {
    list-style: none;
    margin-bottom: 35px;
}

.benefit-list li {
    font-size: 18px;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    color: #333;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c2c;
    font-weight: 700;
    font-size: 20px;
}

.benefit-visual {
    flex: 0.7;
    min-height: 650px;
}

.section-cta {
    display: inline-block;
    background: #4a7c2c;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s;
}

.section-cta:hover {
    background: #2d5016;
    transform: translateY(-2px);
}

.services-reveal {
    padding: 100px 40px;
    background: #fff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #2d5016;
}

.services-intro p {
    font-size: 19px;
    color: #555;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: #fafafa;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.service-image {
    width: 100%;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d5016;
}

.service-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: #4a7c2c;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    background: #4a7c2c;
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #2d5016;
}

.urgency-block {
    padding: 70px 40px;
    background: linear-gradient(135deg, #4a7c2c 0%, #2d5016 100%);
    text-align: center;
}

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

.urgency-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.urgency-content h3 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2d5016;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 17px;
}

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

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

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
}

.checkbox-group a {
    color: #4a7c2c;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: #4a7c2c;
    color: #fff;
    border: none;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    text-align: center;
}

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

.final-content h2 {
    font-size: 44px;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.3;
}

.final-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-large {
    display: inline-block;
    background: #fff;
    color: #2d5016;
    padding: 20px 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.site-footer {
    background: #1a2e0f;
    color: #fff;
    padding: 60px 40px 30px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .nav-links.active {
        max-height: 400px;
        border-top: 1px solid #eee;
    }

    .nav-links li {
        padding: 15px 40px;
        border-bottom: 1px solid #eee;
    }

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

    .hero-subtext {
        font-size: 18px;
    }

    .split-layout,
    .asymmetric-layout {
        flex-direction: column;
    }

    .split-visual,
    .benefit-visual {
        min-height: 400px;
    }

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

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

    .service-card {
        min-width: 100%;
    }

    .sticky-container {
        flex-direction: column;
        text-align: center;
    }

    .form-container {
        padding: 30px 20px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .nav-container {
        padding: 15px 20px;
    }

    .brand {
        font-size: 18px;
    }

    .hero-visual {
        height: 70vh;
        margin-top: 70px;
    }

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

    .hero-subtext {
        font-size: 16px;
    }

    .narrow-content h2,
    .centered-block h2 {
        font-size: 32px;
    }

    .split-content,
    .benefit-text {
        padding: 50px 30px;
    }

    .split-content h3,
    .benefit-text h3 {
        font-size: 28px;
    }

    .services-intro h2 {
        font-size: 34px;
    }

    .final-content h2 {
        font-size: 32px;
    }

    .urgency-content h3 {
        font-size: 28px;
    }
}