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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a3d;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 11px;
    color: #777;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.nav-main {
    display: flex;
    gap: 30px;
}

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

.nav-main a:hover {
    color: #2d5a3d;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2d5a3d;
}

.hero-section {
    height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content {
    max-width: 900px;
    text-align: center;
    color: #ffffff;
    padding: 40px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
}

.story-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.story-intro {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 25px;
    font-weight: 300;
}

.story-section p {
    margin-bottom: 20px;
    font-size: 18px;
}

.story-section h2 {
    font-size: 36px;
    margin-top: 60px;
    margin-bottom: 25px;
    color: #2d5a3d;
    font-weight: 700;
}

.story-section h3 {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d5a3d;
}

.inline-image {
    margin: 50px 0;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-inline {
    text-align: center;
    margin: 50px 0;
}

.btn-cta {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s;
}

.btn-cta:hover {
    background-color: #234a30;
}

.btn-cta-large {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 20px 50px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: background-color 0.3s;
}

.btn-cta-large:hover {
    background-color: #234a30;
}

.split-visual {
    display: flex;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}

.split-visual.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

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

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

.benefits-grid {
    display: flex;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.benefit-card h3 {
    color: #2d5a3d;
    margin-bottom: 15px;
    margin-top: 0;
}

.testimonial-block {
    margin: 40px 0;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #2d5a3d;
    border-radius: 4px;
}

.testimonial-block blockquote {
    font-style: italic;
    color: #34495e;
}

.testimonial-block cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: #7f8c8d;
    font-size: 16px;
}

.feature-list {
    margin: 30px 0;
    padding-left: 30px;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 18px;
}

.cta-section-mid {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 60px;
    text-align: center;
    border-radius: 8px;
    margin: 70px 0;
}

.cta-section-mid h3 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section-mid p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section-mid .btn-cta-large {
    background-color: #ffffff;
    color: #2d5a3d;
}

.cta-section-mid .btn-cta-large:hover {
    background-color: #f0f0f0;
}

.services-reveal {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 42px;
    text-align: center;
    color: #2d5a3d;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #555;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 220px;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    color: #2d5a3d;
    margin: 20px 20px 15px;
}

.service-card p {
    margin: 0 20px 15px;
    color: #555;
    font-size: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a3d;
    margin: 20px;
}

.btn-select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #234a30;
}

.btn-select-service.selected {
    background-color: #4a9d5f;
}

.form-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.form-section h2 {
    font-size: 36px;
    color: #2d5a3d;
    margin-bottom: 20px;
    text-align: center;
}

.form-section > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #234a30;
}

.final-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #2d5a3d 0%, #4a7c59 100%);
    color: #ffffff;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.footer-main {
    background-color: #1a3326;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

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

.footer-section p {
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.references-section {
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.references-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.references-section ol {
    padding-left: 20px;
}

.references-section ol li {
    margin-bottom: 8px;
    font-size: 14px;
}

.references-section ol li a {
    color: #a8d5ba;
    text-decoration: none;
}

.references-section ol li a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.7;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
}

.cookie-banner a {
    color: #a8d5ba;
}

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

.btn-primary {
    padding: 10px 24px;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #234a30;
}

.btn-secondary {
    padding: 10px 24px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.page-header {
    background: linear-gradient(135deg, #2d5a3d 0%, #4a7c59 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-content {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 32px;
    color: #2d5a3d;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 24px;
    color: #2d5a3d;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 17px;
}

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content ul li,
.page-content ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info {
    background-color: #fafafa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-info-item {
    margin-bottom: 20px;
}

.contact-info-item strong {
    display: block;
    color: #2d5a3d;
    margin-bottom: 5px;
    font-size: 18px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: #fafafa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2d5a3d;
}

.service-item h3 {
    margin-top: 0;
    color: #2d5a3d;
}

.service-item .price {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a3d;
    margin-top: 15px;
}

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

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #2d5a3d;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.thanks-content .btn-cta {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .nav-main.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

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

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

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

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

    .split-visual.reverse {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}