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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.ad-notice {
    background-color: #f0e6e3;
    color: #6b4f4f;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #e0d0cc;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.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: 1.5rem;
    font-weight: 600;
    color: #8b6f6f;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #8b6f6f;
}

.hero-section {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.hero-content p {
    font-size: 1.2rem;
    color: #6a6a6a;
    margin-bottom: 35px;
    max-width: 500px;
}

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

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

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b6f6f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #6f5555;
}

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

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

.card-grid {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.feature-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.card-content p {
    color: #6a6a6a;
    line-height: 1.7;
}

.services-highlight {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-highlight h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: #3a3a3a;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #faf7f5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.service-info p {
    color: #6a6a6a;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 600;
    color: #8b6f6f;
    margin-bottom: 15px;
}

.select-service-btn {
    padding: 12px 24px;
    background-color: #8b6f6f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #6f5555;
}

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

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

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

.booking-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.booking-intro p {
    color: #6a6a6a;
    font-size: 1.1rem;
}

.booking-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #3a3a3a;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #8b6f6f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #6f5555;
}

.trust-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #3a3a3a;
}

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

.testimonial-card {
    flex: 1;
    background-color: #faf7f5;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #8b6f6f;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #8b6f6f;
}

.main-footer {
    background-color: #3a3a3a;
    color: #d0d0d0;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    gap: 50px;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

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

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding: 30px 20px 0;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #8b6f6f;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #6f5555;
}

.cookie-btn.reject {
    background-color: #555555;
    color: #ffffff;
}

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

.page-header {
    background-color: #f5ebe8;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.page-header p {
    font-size: 1.2rem;
    color: #6a6a6a;
}

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

.content-block {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.content-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.content-text p {
    color: #6a6a6a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #3a3a3a;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #faf7f5;
    padding: 30px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #8b6f6f;
}

.value-card p {
    color: #6a6a6a;
    line-height: 1.7;
}

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

.approach-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.approach-section p {
    color: #6a6a6a;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 900px;
}

.commitment-block {
    background-color: #f5ebe8;
    padding: 50px;
    border-radius: 8px;
}

.commitment-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.commitment-text p {
    color: #6a6a6a;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.service-category {
    margin-bottom: 60px;
}

.service-category h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #3a3a3a;
    padding-bottom: 15px;
    border-bottom: 2px solid #8b6f6f;
}

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

.service-item {
    display: flex;
    justify-content: space-between;
    background-color: #faf7f5;
    padding: 30px;
    border-radius: 8px;
    gap: 30px;
}

.service-detail {
    flex: 1;
}

.service-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.service-detail p {
    color: #6a6a6a;
    line-height: 1.7;
    margin-bottom: 10px;
}

.service-duration {
    font-size: 0.95rem;
    color: #8b6f6f;
    font-style: italic;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    min-width: 200px;
}

.service-pricing .price {
    font-size: 2rem;
    font-weight: 600;
    color: #8b6f6f;
}

.info-block {
    background-color: #f5ebe8;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.info-block p {
    color: #6a6a6a;
    line-height: 1.8;
    margin-bottom: 15px;
}

.booking-cta {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.booking-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.booking-cta p {
    font-size: 1.1rem;
    color: #6a6a6a;
}

.contact-info {
    padding: 60px 0;
}

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

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

.detail-card {
    background-color: #faf7f5;
    padding: 30px;
    border-radius: 8px;
}

.detail-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.detail-card p {
    color: #6a6a6a;
    line-height: 1.8;
}

.email-display {
    font-weight: 500;
    color: #8b6f6f;
    font-size: 1.1rem;
}

.email-note {
    margin-top: 10px;
    font-size: 0.95rem;
}

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

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0d0cc;
}

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

.hour-item .day {
    font-weight: 500;
    color: #3a3a3a;
}

.hour-item .time {
    color: #6a6a6a;
}

.transport-list {
    list-style: none;
    margin-top: 15px;
}

.transport-list li {
    padding: 8px 0;
    color: #6a6a6a;
}

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 600px;
}

.location-note {
    padding: 60px 0;
    background-color: #faf7f5;
}

.location-note h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.location-note p {
    color: #6a6a6a;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 900px;
}

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

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.thanks-message {
    font-size: 1.3rem;
    color: #6a6a6a;
    margin-bottom: 30px;
}

.confirmation-details {
    background-color: #f5ebe8;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.confirmation-details p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 10px;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: #3a3a3a;
}

.steps-grid {
    display: flex;
    gap: 30px;
    text-align: left;
}

.step-card {
    flex: 1;
    background-color: #faf7f5;
    padding: 30px;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #8b6f6f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.step-card p {
    color: #6a6a6a;
    line-height: 1.7;
}

.thanks-info {
    background-color: #faf7f5;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.thanks-info p {
    color: #6a6a6a;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #8b6f6f;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #e0d0cc;
    color: #3a3a3a;
}

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

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

.last-update {
    color: #8b6f6f;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #3a3a3a;
}

.legal-section p {
    color: #6a6a6a;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.legal-section li {
    color: #6a6a6a;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section a {
    color: #8b6f6f;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0d0cc;
}

.cookies-table th {
    background-color: #f5ebe8;
    color: #3a3a3a;
    font-weight: 600;
}

.cookies-table td {
    color: #6a6a6a;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 30px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

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

    .service-card {
        min-width: 100%;
    }

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

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

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

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

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

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

    .service-item {
        flex-direction: column;
    }

    .service-pricing {
        align-items: flex-start;
    }

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

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

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

    .nav-links {
        gap: 20px;
        font-size: 0.9rem;
    }
}