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

:root {
    --primary-color: #2c5f4e;
    --secondary-color: #5a9179;
    --accent-color: #8bc4a8;
    --dark-color: #1a3a2e;
    --light-bg: #f5f8f6;
    --white: #ffffff;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --border-color: #dfe6e9;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

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

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

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

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.mobile-menu a:hover {
    background-color: var(--light-bg);
}

.hero-section {
    margin-bottom: 60px;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 95, 78, 0.85), rgba(90, 145, 121, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
}

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

.intro-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-card h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
}

.intro-card p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.services-grid {
    padding: 80px 0;
}

.services-grid h2 {
    text-align: center;
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 50px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--light-bg);
}

.card-content {
    padding: 25px;
}

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

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

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

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

.benefits-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 50px;
}

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

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

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

.booking-card {
    background-color: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}

.booking-card h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    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-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.disclaimer-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

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

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

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

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

.footer-card {
    flex: 1 1 calc(25% - 30px);
    min-width: 200px;
}

.footer-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-card a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-card a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

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

.ad-notice {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    padding: 25px;
    z-index: 2000;
    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: 30px;
}

.cookie-content p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: var(--border-color);
    color: var(--text-dark);
}

.btn-reject:hover {
    background-color: #b2bec3;
}

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

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.service-detail-image {
    flex: 1 1 45%;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-color: var(--light-bg);
}

.service-detail-content {
    flex: 1 1 55%;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

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

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

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

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

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

.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.about-content-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1 1 55%;
}

.about-text h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

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

.about-image {
    flex: 1 1 45%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: var(--shadow);
    background-color: var(--light-bg);
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

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

.approach-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.approach-image {
    flex: 1 1 40%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: var(--shadow);
    background-color: var(--light-bg);
    position: sticky;
    top: 90px;
}

.approach-content {
    flex: 1 1 60%;
}

.approach-content h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

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

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h4 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

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

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

.commitment-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.commitment-card h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.commitment-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

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

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

.contact-info-card {
    flex: 1 1 45%;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-info-card h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 30px;
}

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

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

.contact-map-card {
    flex: 1 1 55%;
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    background-color: var(--light-bg);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 95, 78, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.map-overlay p {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
}

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

.directions-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 40px;
}

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

.direction-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

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

.thanks-card {
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.thanks-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-info {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

.legal-content h1 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

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

.legal-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

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

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

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

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

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

    .service-detail-image {
        min-height: 250px;
    }

    .about-content-layout {
        flex-direction: column;
    }

    .about-image {
        height: 300px;
    }

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

    .approach-image {
        height: 300px;
        position: static;
    }

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

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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