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

:root {
    --primary-color: #2d5016;
    --secondary-color: #8fbc5a;
    --accent-color: #f4a460;
    --text-dark: #2c3e21;
    --text-light: #5a6c50;
    --bg-light: #f9faf8;
    --bg-cream: #fefbf5;
    --border-color: #e1e8dc;
    --white: #ffffff;
}

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(--white);
}

.ad-notice {
    background-color: var(--bg-cream);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-section {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-cream);
}

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background-color: #1f3a10;
    transform: translateY(-2px);
}

.intro-cards {
    padding: 80px 40px;
    background-color: var(--white);
}

.card-grid {
    display: flex;
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-card {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.feature-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--border-color);
}

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

.feature-card p {
    padding: 0 24px 24px;
    color: var(--text-light);
    font-size: 15px;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-block {
    display: flex;
    gap: 48px;
    align-items: center;
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-image-wrap {
    flex: 1;
    min-width: 0;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-details h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.service-meta {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.service-meta span {
    font-size: 15px;
    color: var(--text-dark);
}

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

.select-service {
    margin-top: 12px;
    padding: 14px 28px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #7aa84d;
    transform: translateY(-2px);
}

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

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.booking-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.booking-container > p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
    font-size: 17px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.submit-button {
    padding: 18px 36px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 12px;
}

.submit-button:hover {
    background-color: #1f3a10;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 40px;
    background-color: var(--white);
}

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

.testimonials-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    padding: 36px;
    background-color: var(--bg-cream);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 40px 30px;
}

.footer-content {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.footer-block p,
.footer-block a {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: var(--white);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 2px solid var(--border-color);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    padding: 24px 40px;
    display: none;
    z-index: 1000;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: var(--text-dark);
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.cookie-accept:hover {
    background-color: #1f3a10;
    transform: translateY(-2px);
}

.cookie-reject {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.cookie-reject:hover {
    background-color: var(--border-color);
    transform: translateY(-2px);
}

.page-hero {
    padding: 100px 40px 60px;
    text-align: center;
    background-color: var(--bg-cream);
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.page-hero p {
    font-size: 19px;
    color: var(--text-light);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.content-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.text-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-column h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.text-column p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.image-column {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.image-column img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.values-section {
    margin-bottom: 80px;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background-color: var(--bg-cream);
    border-radius: 12px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

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

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

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    gap: 48px;
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

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

.service-card-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.service-card-content {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

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

.service-includes {
    margin-top: 16px;
    padding-left: 20px;
}

.service-includes li {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 8px;
}

.service-meta-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding: 20px;
    background-color: var(--bg-cream);
    border-radius: 8px;
}

.service-meta-info span {
    font-size: 14px;
    color: var(--text-dark);
}

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

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

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

.secondary-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
    border: 2px solid var(--border-color);
}

.secondary-button:hover {
    background-color: var(--border-color);
    transform: translateY(-2px);
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-info-block h2 {
    font-size: 34px;
    color: var(--primary-color);
}

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

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

.info-note {
    padding: 20px;
    background-color: var(--bg-cream);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.info-note p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.location-details {
    margin-bottom: 80px;
}

.location-details h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.location-details p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background-color: var(--bg-cream);
    border-radius: 12px;
}

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

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

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

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
}

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

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

.thanks-details {
    padding: 24px;
    background-color: var(--bg-cream);
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-details p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 12px;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

.thanks-info {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-info ul {
    padding-left: 24px;
}

.thanks-info li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 8px;
}

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

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

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

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-content li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-content {
        padding: 60px 30px;
    }

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

    .hero-image {
        min-height: 300px;
    }

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

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

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

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

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

    .content-block,
    .content-block.reverse {
        flex-direction: column;
    }

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

    .service-card-content {
        padding: 32px;
    }

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

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }
}