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

:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e4e;
    --accent-color: #a8c090;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9f6;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    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 {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.btn-accept {
    background-color: var(--primary-color);
    color: white;
}

.btn-accept:hover {
    background-color: var(--secondary-color);
}

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

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

.header-main {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-notice {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-light);
}

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

.nav-main a {
    font-weight: 500;
    font-size: 15px;
}

.hero-long {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #2d5016;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85), rgba(107, 142, 78, 0.75));
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    max-width: 900px;
}

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

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

.story-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.story-intro {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.story-section p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.8;
}

.story-section h2 {
    font-size: 36px;
    margin: 60px 0 24px;
    color: var(--primary-color);
}

.story-section h3 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--secondary-color);
}

.insight-block {
    background-color: var(--bg-light);
    padding: 40px;
    margin: 50px 0;
    border-left: 4px solid var(--primary-color);
}

.insight-block h2 {
    margin-top: 0;
}

.inline-img {
    margin: 50px 0;
    border-radius: 8px;
    width: 100%;
}

.trust-marker {
    background-color: #f0f4ed;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    font-style: italic;
}

.trust-marker strong {
    font-style: normal;
    color: var(--primary-color);
}

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

.benefit-list li {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.7;
}

.cta-inline {
    text-align: center;
    padding: 50px 0;
    margin: 60px 0;
    background-color: var(--accent-color);
    border-radius: 8px;
}

.cta-inline p {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.services-reveal {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

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

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

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

.service-card h3 {
    font-size: 24px;
    margin: 20px 20px 12px;
    color: var(--primary-color);
}

.service-card p {
    margin: 0 20px 16px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px;
}

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

.btn-select:hover {
    background-color: var(--primary-color);
}

.service-card.selected {
    border: 3px solid var(--primary-color);
}

.form-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.selected-service-display {
    background-color: var(--accent-color);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    text-align: center;
}

.selected-service-display p {
    margin: 8px 0;
    font-size: 18px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.references-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.references-list {
    list-style-position: inside;
}

.references-list li {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
}

.citation {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.disclaimer-section {
    padding: 40px 0;
    background-color: #fff8e1;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
}

.footer-main {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p {
    color: #ccc;
    font-size: 14px;
}

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

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

.footer-col a {
    color: #ccc;
    font-size: 14px;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #999;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.about-content {
    padding: 80px 0;
}

.about-img {
    margin: 40px 0;
    border-radius: 8px;
    width: 100%;
}

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.about-content h2 {
    font-size: 36px;
    margin: 50px 0 24px;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.8;
}

.value-block {
    background-color: var(--bg-light);
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid var(--accent-color);
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

.method-list li {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--accent-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-img {
    flex: 1;
}

.service-detail-img img {
    border-radius: 8px;
    width: 100%;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-detail-text p {
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.7;
}

.service-detail-text ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-detail-text ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.process-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.process-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-info-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-map {
    flex: 1;
}

.contact-map img {
    border-radius: 8px;
    width: 100%;
}

.map-caption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.contact-cta {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.thanks-details {
    background-color: var(--accent-color);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.service-confirmation h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.service-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.next-steps {
    text-align: left;
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.next-steps ol {
    padding-left: 30px;
}

.next-steps ol li {
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.7;
}

.thanks-note {
    background-color: #fff8e1;
    padding: 20px;
    border-left: 4px solid #ffc107;
    margin: 40px 0;
    text-align: left;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.meanwhile-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.meanwhile-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.meanwhile-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.meanwhile-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.meanwhile-links a {
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.meanwhile-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: var(--secondary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 12px;
    color: var(--secondary-color);
}

.legal-page p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

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

.legal-page li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-main {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

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

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

    .story-section h2 {
        font-size: 28px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }

    .meanwhile-links {
        flex-direction: column;
    }

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