:root {
    --primary: #2d5a4a;
    --primary-light: #3d7a64;
    --secondary: #c9a962;
    --dark: #1a1a1a;
    --light: #f8f6f3;
    --grey: #6b6b6b;
    --white: #ffffff;
    --accent-bg: #e8e4dc;
    --card-bg: #f2f0eb;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

header {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

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

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

nav {
    display: flex;
    align-items: center;
}

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

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

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

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    margin: 6px 0;
    transition: transform 0.3s ease;
}

.hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    background-color: var(--accent-bg);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-color: var(--card-bg);
}

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

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

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    color: var(--grey);
    margin-bottom: 28px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

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

.btn-secondary:hover {
    background-color: #b89a52;
}

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

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

.section {
    padding: 80px 0;
}

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

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

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: var(--dark);
}

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

.section-header p {
    font-size: 17px;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: #b0b0b0;
}

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

.intro-image {
    flex: 1;
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.intro-text p {
    color: var(--grey);
    margin-bottom: 16px;
}

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

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

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

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

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

.service-content {
    padding: 24px;
}

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

.service-content p {
    color: var(--grey);
    font-size: 15px;
    margin-bottom: 16px;
}

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

.features-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
    text-align: center;
    padding: 30px 20px;
}

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

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

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--grey);
    font-size: 14px;
}

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

.testimonial-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

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

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

.testimonial-author span {
    font-weight: 600;
    color: var(--dark);
}

.testimonial-author small {
    color: var(--grey);
    font-size: 13px;
}

.cta-section {
    text-align: center;
    padding: 70px 0;
}

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

.cta-section p {
    color: #b0b0b0;
    margin-bottom: 28px;
    font-size: 17px;
}

.about-intro {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about-intro-text {
    flex: 1.2;
}

.about-intro-text h1 {
    font-size: 38px;
    margin-bottom: 24px;
}

.about-intro-text p {
    color: var(--grey);
    margin-bottom: 16px;
    font-size: 16px;
}

.about-intro-image {
    flex: 1;
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
}

.about-intro-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

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

.value-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 260px;
    padding: 32px;
    background-color: var(--white);
    border-radius: 8px;
    text-align: center;
}

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

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

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.stat-item span:last-child {
    color: var(--white);
    font-size: 15px;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 36px;
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--grey);
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey);
    margin-bottom: 8px;
}

.contact-detail p {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-map {
    flex: 1;
    background-color: var(--card-bg);
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.form-section {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-section h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    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 {
    min-height: 120px;
    resize: vertical;
}

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

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

.page-header {
    background-color: var(--accent-bg);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 38px;
    margin-bottom: 12px;
}

.page-header p {
    color: var(--grey);
    font-size: 17px;
}

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

.legal-content h2 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: var(--dark);
}

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

.legal-content p {
    color: var(--grey);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
    color: var(--grey);
}

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

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

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

.thanks-content p {
    font-size: 18px;
    color: var(--grey);
    margin-bottom: 28px;
    max-width: 500px;
}

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

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

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

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

.footer-col p {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 8px;
}

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

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

.footer-col ul li a {
    color: #a0a0a0;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #707070;
    font-size: 13px;
}

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

.footer-links a {
    color: #707070;
    font-size: 13px;
}

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

.disclaimer {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
}

.disclaimer p {
    color: #666;
    font-size: 12px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    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: 24px;
    flex-wrap: wrap;
}

.cookie-inner p {
    flex: 1;
    font-size: 14px;
    color: #ccc;
}

.cookie-inner p a {
    color: var(--secondary);
}

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

.cookie-buttons button {
    padding: 10px 24px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

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

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-row {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

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

.service-row-image {
    flex: 0 0 45%;
    background-color: var(--card-bg);
}

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

.service-row-content {
    flex: 1;
    padding: 40px;
}

.service-row-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.service-row-content p {
    color: var(--grey);
    margin-bottom: 20px;
}

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

.booking-form {
    margin-top: 60px;
    background-color: var(--light);
    padding: 50px;
    border-radius: 8px;
}

.booking-form h2 {
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 900px) {
    nav ul {
        display: none;
    }

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

    nav.open ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 24px;
        gap: 16px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .hero-bg {
        width: 100%;
        opacity: 0.3;
    }

    .hero-content {
        max-width: 100%;
    }

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

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

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

    .service-row-image {
        flex: none;
        width: 100%;
    }

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

    .footer-grid {
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 50px 0;
    }

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

    .hero {
        min-height: 450px;
    }

    .hero h1 {
        font-size: 28px;
    }

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