* {
    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: #2c2c2c;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.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;
    margin: 0;
}

.cookie-actions {
    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: #4a7c59;
    color: white;
}

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

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

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

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #4a7c59;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #4a7c59;
}

.hero-section {
    position: relative;
    height: 85vh;
    background: #1a1a1a;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    max-width: 900px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    color: #f0f0f0;
    max-width: 700px;
    margin-bottom: 40px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #4a7c59;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: #3d6849;
    transform: translateY(-2px);
}

.story-intro {
    padding: 120px 40px;
    background: #ffffff;
}

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

.story-intro h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 32px;
    line-height: 1.3;
    color: #1a1a1a;
}

.story-intro p {
    font-size: 19px;
    margin-bottom: 24px;
    color: #3c3c3c;
}

.story-intro img {
    width: 100%;
    height: auto;
    margin-top: 48px;
    margin-bottom: 24px;
    border-radius: 8px;
    object-fit: cover;
}

.problem-amplify {
    padding: 100px 40px;
    background: #f5f5f5;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3c3c3c;
}

.split-image {
    flex: 1;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-reveal {
    padding: 100px 40px;
    background: #2c3e36;
    color: #ffffff;
}

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

.insight-reveal h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 36px;
}

.insight-reveal p {
    font-size: 19px;
    margin-bottom: 28px;
    line-height: 1.7;
    text-align: left;
}

.trust-builder {
    padding: 100px 40px;
    background: #ffffff;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #4a7c59;
}

.testimonial-card p {
    font-size: 19px;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

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

.benefits-section h2 {
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.benefit-item {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.benefit-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.benefit-item h3 {
    font-size: 22px;
    font-weight: 600;
    padding: 24px 24px 12px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 16px;
    padding: 0 24px 24px;
    color: #3c3c3c;
    line-height: 1.6;
}

.cta-transition {
    padding: 100px 40px;
    background: #4a7c59;
    color: #ffffff;
}

.cta-transition h2 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.cta-transition p {
    font-size: 19px;
    margin-bottom: 32px;
    text-align: center;
}

.cta-inline {
    display: inline-block;
    padding: 14px 36px;
    background: #ffffff;
    color: #4a7c59;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

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

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

.services-reveal h2 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #555;
}

.service-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #f9f9f9;
    padding: 32px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

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

.select-service {
    padding: 12px 24px;
    background: #4a7c59;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #3d6849;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    overflow: auto;
}

.modal.active {
    display: block;
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #000;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

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

.service-display {
    padding: 12px;
    background: #f0f0f0;
    border-radius: 4px;
    font-weight: 600;
    color: #4a7c59;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #4a7c59;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #3d6849;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a7c59;
}

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

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: #252525;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

.contact-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-page-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-info {
    background: #f9f9f9;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 12px;
    color: #3c3c3c;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: #3c3c3c;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-page li {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.6;
    color: #3c3c3c;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 36px;
    color: #4a7c59;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: #3c3c3c;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-content a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 32px;
    background: #4a7c59;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-content a:hover {
    background: #3d6849;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 16px 20px;
    }

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

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

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

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

    .service-list {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }
}