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

:root {
    --primary: #2d5a3d;
    --primary-light: #4a7c5c;
    --secondary: #8b9d77;
    --accent: #d4a574;
    --dark: #1a2e1f;
    --light: #f5f7f2;
    --white: #ffffff;
    --text: #2c3e2f;
    --text-light: #5a6b5c;
    --border: #c8d4c2;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

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

.ad-disclosure {
    background-color: var(--dark);
    color: var(--light);
    font-size: 12px;
    padding: 6px 0;
    text-align: center;
}

.top-nav {
    background-color: var(--white);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo span {
    color: var(--accent);
}

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

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

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

.nav-cta {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.nav-cta:hover {
    background-color: var(--primary-light);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    transition: 0.3s;
}

.hero-section {
    background-color: var(--secondary);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 80px 0;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    color: var(--light);
    margin-bottom: 36px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: var(--dark);
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #c49564;
    transform: translateY(-2px);
}

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

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

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

.section-alt {
    background-color: var(--light);
    padding: 100px 0;
}

.section-dark {
    background-color: var(--dark);
    padding: 100px 0;
    color: var(--light);
}

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

.section-title {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 700;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 50px;
}

.section-dark .section-subtitle {
    color: var(--secondary);
}

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

.intro-text {
    flex: 1;
}

.intro-image {
    flex: 1;
    background-color: var(--secondary);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.features-row {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    flex: 1;
    padding: 32px;
    background-color: var(--light);
    border-radius: 10px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 15px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.service-image {
    height: 200px;
    background-color: var(--secondary);
    overflow: hidden;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

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

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.service-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: rgba(255,255,255,0.08);
    padding: 36px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--secondary);
}

.testimonial-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 14px;
    opacity: 0.7;
}

.cta-banner {
    text-align: center;
}

.cta-banner h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

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

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1.2;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

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

.contact-item h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 18px;
    color: var(--dark);
}

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

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

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

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

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

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

.form-submit:hover {
    background-color: var(--primary-light);
}

.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 70px 0 30px;
}

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

.footer-col {
    flex: 1;
}

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

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

.footer-col ul li a {
    color: var(--secondary);
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-about p {
    color: var(--secondary);
    font-size: 15px;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--secondary);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--secondary);
    font-size: 14px;
    transition: color 0.2s;
}

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

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

.page-header h1 {
    font-size: 44px;
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--light);
    opacity: 0.9;
}

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

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

.prose h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--dark);
}

.prose h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--dark);
}

.prose p {
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.8;
}

.prose ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.prose ul li {
    list-style: disc;
    margin-bottom: 10px;
    color: var(--text);
}

.about-story {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-story-text {
    flex: 1;
}

.about-story-image {
    flex: 1;
    background-color: var(--secondary);
    border-radius: 12px;
    overflow: hidden;
    min-height: 350px;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background-color: var(--light);
    border-radius: 12px;
}

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

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

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

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

.thanks-icon {
    width: 90px;
    height: 90px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 45px;
    height: 45px;
    fill: var(--white);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--light);
    padding: 20px 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-accept {
    background-color: var(--accent);
    color: var(--dark);
}

.cookie-reject {
    background-color: transparent;
    color: var(--light);
    border: 1px solid var(--light);
}

.cookie-btn:hover {
    opacity: 0.9;
}

.disclaimer {
    background-color: var(--light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-details-page {
    padding: 80px 0;
}

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

.contact-main {
    flex: 2;
}

.contact-sidebar {
    flex: 1;
    background-color: var(--white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    height: fit-content;
}

.contact-sidebar h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--dark);
}

.hours-list {
    margin-bottom: 30px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 500;
}

.hours-time {
    color: var(--text-light);
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

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

    .mobile-toggle {
        display: flex;
    }

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

    .intro-block,
    .about-story {
        flex-direction: column;
    }

    .features-row,
    .testimonials-wrapper,
    .values-grid {
        flex-direction: column;
    }

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

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 45%;
    }

    .service-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 30px;
    }

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

    .page-header h1 {
        font-size: 32px;
    }

    .footer-col {
        flex: 1 1 100%;
    }

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