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

:root {
    --primary-color: #2d5016;
    --secondary-color: #5a7f3c;
    --accent-color: #8fae6f;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9f5;
    --bg-white: #ffffff;
    --bg-cream: #faf8f3;
    --border-color: #e0e4db;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.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: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.hero-section {
    position: relative;
    background-color: var(--bg-light);
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85) 0%, rgba(90, 127, 60, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 40px;
    text-align: center;
    color: var(--bg-white);
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.intro-section {
    background-color: var(--bg-cream);
    padding: 100px 40px;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-section h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 28px;
    font-weight: 700;
}

.intro-section p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.services-preview {
    background-color: var(--bg-white);
    padding: 120px 40px;
}

.services-preview h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 60px;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 45%;
    position: relative;
    background-color: var(--border-color);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.service-info p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
    padding: 20px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.price-value {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 800;
}

.price-unit {
    font-size: 15px;
    color: var(--text-medium);
}

.btn-service {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.value-section {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.split-text p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.split-image {
    flex: 0 0 48%;
    background-color: var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 40px;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 19px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.form-section {
    background-color: var(--bg-cream);
    padding: 100px 40px;
}

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

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

.contact-form {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

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

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
}

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

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

.footer-section ul li a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

.btn-primary {
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 12px 28px;
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.page-hero {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 40px;
    text-align: center;
}

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

.lead {
    font-size: 22px;
    opacity: 0.95;
}

.about-story {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.about-story .container-wide {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 0 0 48%;
    background-color: var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.story-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-section {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

.values-section h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 0 0 calc(50% - 20px);
    padding: 32px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.value-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

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

.team-section {
    background-color: var(--bg-cream);
    padding: 100px 40px;
}

.team-section h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.team-section p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-section img {
    width: 100%;
    margin-top: 40px;
    border-radius: 12px;
    object-fit: cover;
}

.commitment-section {
    background-color: var(--bg-white);
    padding: 100px 40px;
    text-align: center;
}

.commitment-section h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.commitment-section p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.commitment-section .btn-cta {
    margin-top: 24px;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.services-detailed {
    background-color: var(--bg-white);
    padding: 80px 40px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 48%;
    background-color: var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-detail-content ul {
    margin-bottom: 28px;
    padding-left: 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.7;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

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

.contact-content {
    background-color: var(--bg-white);
    padding: 80px 40px;
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 0 0 35%;
}

.contact-info-block h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 32px;
    font-weight: 700;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.info-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.info-note {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-top: 32px;
}

.info-note p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-form-block {
    flex: 1;
}

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

.contact-form-block > p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.thanks-section {
    background-color: var(--bg-light);
    padding: 100px 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content .lead {
    font-size: 22px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.thanks-details {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-confirmation {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin: 24px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.thanks-actions .btn-primary,
.thanks-actions .btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    display: inline-block;
}

.thanks-actions .btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.legal-page {
    background-color: var(--bg-white);
    padding: 80px 40px;
}

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

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

.legal-page h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.legal-page ul li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

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

.cookie-table td {
    font-size: 15px;
    color: var(--text-medium);
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 40px;
    }

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

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 300px;
    }

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

    .split-image {
        flex: 1;
    }

    .about-story .container-wide {
        flex-direction: column;
    }

    .story-image {
        flex: 1;
    }

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

    .service-detail:nth-child(even) {
        flex-direction: column;
    }

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

    .contact-split {
        flex-direction: column;
        gap: 48px;
    }

    .contact-info-block {
        flex: 1;
    }

    .value-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .navigation {
        padding: 16px 20px;
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

    .hero-content p {
        font-size: 18px;
    }

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

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

    .container-wide,
    .container-narrow {
        padding: 0 20px;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}