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

:root {
    --primary-color: #d4a373;
    --secondary-color: #2c2c2c;
    --accent-color: #8b6f47;
    --light-bg: #faf8f5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e5e5e5;
}

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

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

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

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

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

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

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

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

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

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    padding-left: 20px;
    border-left: 1px solid var(--border-color);
}

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

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

.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-bg);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.7), rgba(212, 163, 115, 0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 35px;
    font-weight: 300;
    line-height: 1.5;
}

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

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
}

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

.intro-text {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

.services-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.card-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

.select-service-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: var(--primary-color);
}

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

.booking-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.booking-intro {
    text-align: center;
    margin-bottom: 50px;
}

.booking-intro h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.booking-intro p {
    font-size: 17px;
    color: var(--text-light);
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: var(--light-bg);
    cursor: not-allowed;
}

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

.submit-btn:hover {
    background-color: var(--accent-color);
}

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

.philosophy-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--accent-color);
}

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

.philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 35px;
    background-color: var(--white);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 20px;
    }

    .nav.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .ad-disclosure {
        border-left: none;
        padding-left: 0;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
    }

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

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

    .service-card {
        width: calc(50% - 15px);
    }

    .philosophy-content {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .service-card {
        width: 100%;
    }

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

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

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

    .booking-form {
        padding: 30px 20px;
    }
}

.about-hero {
    padding: 100px 0 80px;
    background-color: var(--light-bg);
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

.about-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.team-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--secondary-color);
    font-weight: 600;
    text-align: center;
}

.team-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-text {
    flex: 1;
}

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

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

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.services-hero {
    padding: 100px 0 80px;
    background-color: var(--light-bg);
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

.services-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

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

.service-detail-image {
    flex: 1;
    max-width: 400px;
    background-color: var(--white);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--accent-color);
}

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

.info-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--white);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.contact-hero {
    padding: 100px 0 80px;
    background-color: var(--light-bg);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

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

.contact-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.access-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
    font-weight: 600;
}

.access-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.access-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    text-align: center;
}

.access-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.booking-cta {
    padding: 80px 0;
    background-color: var(--white);
}

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

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

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

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

.secondary-button {
    display: inline-block;
    padding: 16px 45px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    font-size: 16px;
}

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

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

.next-steps-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    padding: 40px 30px;
    background-color: var(--light-bg);
    border-radius: 8px;
    text-align: center;
}

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

.step-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.legal-hero {
    padding: 100px 0 60px;
    background-color: var(--light-bg);
    text-align: center;
}

.legal-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.legal-content {
    padding: 80px 0;
    background-color: var(--white);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

.legal-text ul li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.legal-text a:hover {
    color: var(--accent-color);
}

@media (max-width: 968px) {
    .story-content,
    .team-content,
    .contact-grid {
        flex-direction: column;
    }

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

    .service-detail-image {
        max-width: 100%;
    }

    .about-hero h1,
    .services-hero h1,
    .contact-hero h1,
    .legal-hero h1 {
        font-size: 38px;
    }

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

@media (max-width: 640px) {
    .values-grid,
    .access-info,
    .steps-grid {
        flex-direction: column;
    }

    .service-detail-card {
        padding: 30px 20px;
    }

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

    .secondary-button,
    .cta-button {
        width: 100%;
    }
}