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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FAF9F7;
}

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

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

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

.nav-floating {
    background-color: #FFFFFF;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    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;
    min-height: 70px;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #6B5D4F;
    letter-spacing: 0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #999;
    padding: 4px 12px;
    background-color: #F5F5F5;
    border-radius: 4px;
    margin: 0 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #4A4A4A;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8B7355;
}

.hero-card {
    margin-top: 0;
}

.hero-image {
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.45);
    padding: 60px 40px;
    text-align: center;
    max-width: 700px;
    color: #FFFFFF;
}

.hero-overlay h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    font-weight: 300;
}

.intro-cards {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.card-feature {
    flex: 1 1 320px;
    max-width: 380px;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 28px;
}

.card-body h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3A3A3A;
}

.card-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #5A5A5A;
}

.philosophy-section {
    padding: 90px 0;
    background-color: #F5F3F0;
}

.philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    text-align: center;
    color: #3A3A3A;
}

.philosophy-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.services-preview {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.services-preview h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #3A3A3A;
}

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

.service-card {
    flex: 1 1 340px;
    max-width: 360px;
    background-color: #FAF9F7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.09);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 100%;
    height: 240px;
    background-color: #E8E5E0;
}

.service-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    font-size: 20px;
    margin: 24px 24px 12px;
    color: #3A3A3A;
}

.service-card p {
    font-size: 15px;
    margin: 0 24px 16px;
    line-height: 1.6;
    color: #5A5A5A;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #8B7355;
    margin: 0 24px 18px;
}

.select-service-btn {
    background-color: #6B5D4F;
    color: #FFFFFF;
    border: none;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 24px 24px;
    border-radius: 6px;
}

.select-service-btn:hover {
    background-color: #8B7355;
}

.booking-section {
    padding: 80px 0;
    background-color: #F5F3F0;
}

.form-card {
    background-color: #FFFFFF;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 35px;
    text-align: center;
    color: #3A3A3A;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4A4A4A;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D0D0D0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B7355;
}

.form-group input[readonly] {
    background-color: #F5F5F5;
    color: #6A6A6A;
}

.btn-submit {
    width: 100%;
    background-color: #6B5D4F;
    color: #FFFFFF;
    border: none;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #8B7355;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #3A3A3A;
}

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

.testimonial-card {
    flex: 1 1 320px;
    max-width: 360px;
    background-color: #FAF9F7;
    padding: 35px 30px;
    border-radius: 8px;
    border-left: 4px solid #8B7355;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 14px;
    color: #7A7A7A;
    font-style: normal;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #F9F8F6;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #6A6A6A;
    text-align: center;
    padding: 24px;
    background-color: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #E0E0E0;
}

.footer {
    background-color: #3A3A3A;
    color: #C0C0C0;
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    color: #FFFFFF;
    margin-bottom: 18px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

.footer-col ul li a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555555;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 24px 20px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-primary {
    background-color: #8B7355;
    color: #FFFFFF;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #6B5D4F;
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 10px 26px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: #2C2C2C;
}

.page-header {
    background-color: #6B5D4F;
    color: #FFFFFF;
    padding: 70px 0;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    font-weight: 300;
}

.services-detail {
    padding: 60px 0;
    background-color: #FAF9F7;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1 1 400px;
    padding: 45px;
}

.service-detail-content h2 {
    font-size: 30px;
    margin-bottom: 18px;
    color: #3A3A3A;
}

.service-price-large {
    font-size: 34px;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #4A4A4A;
}

.service-features {
    list-style: none;
    margin-top: 24px;
}

.service-features li {
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
    font-size: 15px;
    color: #5A5A5A;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B7355;
    font-weight: 700;
    font-size: 18px;
}

.service-detail-image {
    flex: 1 1 350px;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

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

.cta-section {
    padding: 70px 0;
    background-color: #F5F3F0;
}

.cta-card {
    background-color: #6B5D4F;
    color: #FFFFFF;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
}

.cta-card h2 {
    font-size: 34px;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 28px;
    font-weight: 300;
}

.about-story {
    padding: 70px 0;
    background-color: #FFFFFF;
}

.about-card-main {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1 1 400px;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.about-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: block;
}

.about-content {
    flex: 1 1 450px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #3A3A3A;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4A4A4A;
}

.philosophy-cards {
    padding: 70px 0;
    background-color: #F5F3F0;
}

.philosophy-cards h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #3A3A3A;
}

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

.philosophy-card {
    flex: 1 1 280px;
    max-width: 320px;
    background-color: #FFFFFF;
    padding: 35px 28px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.philosophy-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #3A3A3A;
}

.philosophy-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5A5A5A;
}

.team-section {
    padding: 70px 0;
    background-color: #FFFFFF;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #3A3A3A;
}

.team-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4A4A4A;
}

.values-section {
    padding: 70px 0;
    background-color: #F5F3F0;
}

.values-card {
    background-color: #FFFFFF;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.values-card h2 {
    font-size: 32px;
    margin-bottom: 35px;
    text-align: center;
    color: #3A3A3A;
}

.values-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3A3A3A;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5A5A5A;
}

.visit-cta {
    padding: 70px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.visit-cta h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #3A3A3A;
}

.visit-cta p {
    font-size: 17px;
    margin-bottom: 28px;
    color: #4A4A4A;
}

.contact-section {
    padding: 70px 0;
    background-color: #FAF9F7;
}

.contact-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1 1 400px;
    background-color: #FFFFFF;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #3A3A3A;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #6B5D4F;
}

.contact-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4A4A4A;
}

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

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

.hours-item .day {
    font-weight: 600;
    color: #4A4A4A;
}

.hours-item .time {
    color: #6A6A6A;
}

.hours-note {
    margin-top: 18px;
    font-size: 14px;
    color: #7A7A7A;
    font-style: italic;
}

.location-info,
.visit-info {
    background-color: #FFFFFF;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.location-info h2,
.visit-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #3A3A3A;
}

.location-info p,
.visit-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4A4A4A;
}

.directions-section {
    padding: 60px 0;
    background-color: #F5F3F0;
}

.directions-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #3A3A3A;
}

.transport-options {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.transport-item {
    flex: 1 1 280px;
    background-color: #FFFFFF;
    padding: 30px 26px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.transport-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #6B5D4F;
}

.transport-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5A5A5A;
}

.thanks-section {
    padding: 100px 0;
    background-color: #FAF9F7;
}

.thanks-card {
    background-color: #FFFFFF;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #3A3A3A;
}

.thanks-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.thanks-details {
    margin: 30px 0;
}

.service-confirmation {
    font-size: 16px;
    color: #6B5D4F;
    background-color: #F5F3F0;
    padding: 16px;
    border-radius: 6px;
}

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

.legal-content {
    padding: 60px 0;
    background-color: #FAF9F7;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #3A3A3A;
}

.legal-updated {
    font-size: 14px;
    color: #7A7A7A;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 16px;
    color: #3A3A3A;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #4A4A4A;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4A4A4A;
}

.legal-content ul {
    margin: 16px 0 16px 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4A4A4A;
}

.legal-content a {
    color: #8B7355;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #6B5D4F;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #E0E0E0;
}

.cookie-table th {
    background-color: #F5F3F0;
    font-weight: 600;
    color: #3A3A3A;
}

.cookie-table td {
    font-size: 15px;
    color: #4A4A4A;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .nav-menu {
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 15px;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}