:root {
    --primary: #5a7d5a;
    --primary-dark: #3d5a3d;
    --secondary: #8fa88f;
    --accent: #e8d5c4;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --bg: #fafafa;
    --bg-alt: #f0f0f0;
    --white: #ffffff;
    --border: #ddd;
    --shadow: rgba(0,0,0,0.1);
    --radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a:hover {
    color: var(--primary-dark);
}

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

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

.ad-disclosure {
    background-color: var(--text);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
}

.header {
    background-color: var(--white);
    box-shadow: 0 2px 8px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.nav-links a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--text);
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 16px;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 22px;
}

p {
    margin-bottom: 16px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

.hero {
    display: flex;
    min-height: 85vh;
    background-color: var(--bg-alt);
}

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

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

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

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

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

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    margin-bottom: 24px;
}

.intro-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 400px;
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

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

.services-preview h2 {
    text-align: center;
    margin-bottom: 48px;
}

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

.service-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow);
    flex: 0 1 350px;
    transition: transform 0.3s ease;
}

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

.card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.card-content {
    padding: 24px;
}

.card-content h3 {
    margin-bottom: 12px;
}

.card-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
}

.price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.card-link {
    font-weight: 600;
    color: var(--primary);
}

.card-link:hover {
    color: var(--primary-dark);
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
    color: var(--white);
}

.testimonials-section h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 48px;
}

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

.testimonial-card {
    background-color: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: var(--radius);
    flex: 0 1 350px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.9);
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--secondary);
}

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

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.booking-section h2 {
    text-align: center;
    margin-bottom: 32px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    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);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.alt-bg {
    background-color: var(--bg-alt);
}

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

.page-hero h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-full {
    padding: 60px 0;
}

.service-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

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

.service-image {
    flex: 1;
    min-height: 350px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

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

.service-info h2 {
    margin-bottom: 16px;
}

.service-info p {
    color: var(--text-light);
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-pricing {
    margin: 24px 0;
    padding: 20px;
    background-color: var(--bg-alt);
    border-radius: var(--radius);
}

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

.price-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 8px 0;
}

.price-note {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 32px;
    color: var(--text-light);
}

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

.story-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-image {
    flex: 1;
    min-height: 450px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

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

.values-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

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

.value-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    flex: 0 1 260px;
    box-shadow: 0 4px 16px var(--shadow);
}

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    color: var(--primary);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0;
}

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

.team-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

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

.team-card {
    flex: 0 1 300px;
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow);
}

.team-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

.team-info {
    padding: 24px;
}

.team-info h3 {
    margin-bottom: 4px;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-info p:last-child {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0;
}

.stats-section {
    padding: 60px 0;
    background-color: var(--primary);
    color: var(--white);
}

.stats-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 0 1 180px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.contact-main {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

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

.contact-info-section h2 {
    margin-bottom: 32px;
}

.contact-card {
    margin-bottom: 32px;
}

.contact-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.contact-card address {
    font-style: normal;
    color: var(--text-light);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-note {
    font-size: 13px;
    color: var(--text-light);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

.hours-table td:first-child {
    font-weight: 500;
}

.transport-list {
    list-style: none;
    margin-top: 12px;
}

.transport-list li {
    padding: 6px 0;
    color: var(--text-light);
    font-size: 14px;
}

.contact-image-section {
    flex: 1;
}

.contact-image {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 300px;
    position: relative;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-message {
    padding: 32px;
    background-color: var(--bg-alt);
    border-radius: var(--radius);
    margin-top: 24px;
}

.contact-message h3 {
    margin-bottom: 12px;
}

.contact-message p {
    color: var(--text-light);
    margin-bottom: 0;
}

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

.faq-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    flex: 0 1 calc(50% - 15px);
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--radius);
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0;
}

.map-section {
    padding: 40px 0;
}

.map-placeholder {
    height: 300px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-light);
}

.thanks-section {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    color: var(--primary);
    margin-bottom: 24px;
}

.thanks-content h1 {
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--text-light);
}

.service-confirmation {
    background-color: var(--bg-alt);
    padding: 16px 24px;
    border-radius: var(--radius);
    margin: 24px 0;
}

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

.next-steps {
    padding: 60px 0;
    background-color: var(--bg-alt);
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 48px;
}

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

.step-card {
    flex: 0 1 300px;
    text-align: center;
    padding: 32px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 4px 16px var(--shadow);
}

.step-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-card h3 {
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    margin-bottom: 8px;
}

.legal-updated {
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.legal-section address {
    font-style: normal;
    color: var(--text-light);
    margin: 16px 0;
}

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

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.footer-col p,
.footer-col address {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-style: normal;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-bottom .disclaimer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 20px var(--shadow);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
    min-width: 300px;
}

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
}

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

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

    .hero-content {
        padding: 40px 24px;
    }

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

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    .intro-grid,
    .story-grid,
    .contact-grid {
        flex-direction: column;
    }

    .intro-image,
    .story-image {
        min-height: 300px;
    }

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

    .service-image {
        min-height: 280px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px 24px;
        gap: 0;
        box-shadow: 0 4px 16px var(--shadow);
    }

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

    .nav-links li a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .form-row {
        flex-direction: column;
    }

    .faq-item {
        flex: 0 1 100%;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

    .stats-grid {
        flex-direction: column;
        gap: 32px;
    }
}
