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

:root {
    --primary-color: #6B2D5C;
    --secondary-color: #8B4367;
    --accent-color: #A85F7A;
    --dark-color: #2C1810;
    --light-color: #F5F1ED;
    --text-color: #3A3A3A;
    --border-color: #D4C5B9;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    background: #FAFAFA;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #8B7355;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    max-width: 900px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 700px;
    opacity: 0.95;
}

.intro-story {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.intro-story p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.image-overlay-section {
    margin: 5rem 0;
    padding: 0 2rem;
}

.overlay-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background-color: #A69080;
}

.overlay-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.overlay-text-box {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    background: rgba(255, 255, 255, 0.93);
    padding: 2.5rem;
    max-width: 450px;
    border-left: 4px solid var(--primary-color);
}

.overlay-text-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.overlay-text-box p {
    font-size: 1rem;
    line-height: 1.6;
}

.regions-showcase {
    padding: 6rem 2rem;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--dark-color);
    font-weight: 400;
}

.regions-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.region-card {
    width: 380px;
    background: var(--light-color);
    overflow: hidden;
}

.region-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #B8A696;
}

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

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

.region-info {
    padding: 1.8rem;
}

.region-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.region-info p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.region-highlight {
    display: inline-block;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.testimonial-visual {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: white;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-wrapper blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    font-weight: 300;
}

.testimonial-wrapper cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.experience-detail {
    padding: 6rem 2rem;
}

.detail-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.detail-text {
    flex: 1;
}

.detail-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 400;
}

.detail-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.experience-list {
    list-style: none;
    margin-top: 2rem;
}

.experience-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.experience-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.detail-image {
    flex: 1;
    background-color: #C4B5A7;
}

.detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-section {
    padding: 5rem 2rem;
    background: var(--secondary-color);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 3px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.services-preview {
    padding: 6rem 2rem;
    background: white;
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--dark-color);
    font-weight: 400;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-item {
    width: 380px;
    padding: 2rem;
    background: var(--light-color);
    border-left: 3px solid var(--accent-color);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-item p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.8rem 1.8rem;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

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

.booking-section {
    padding: 6rem 2rem;
    background: #E8E3DE;
}

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

.form-wrapper h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.booking-form {
    background: white;
    padding: 3rem;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 1rem;
}

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

.form-group input[readonly] {
    background: #F9F9F9;
    cursor: not-allowed;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background: #F5F1ED;
    border-top: 1px solid var(--border-color);
}

.disclaimer {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

.footer {
    background: var(--dark-color);
    color: #D4C5B9;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

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

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #4A3A2A;
    text-align: center;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 24, 16, 0.97);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
}

.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: 1.5rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

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

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn:hover {
    opacity: 0.85;
}

.page-hero {
    margin-top: 80px;
    position: relative;
    height: 50vh;
    overflow: hidden;
}

.legal-content {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.legal-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--light-color);
    font-weight: 600;
}

.contact-hero {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: var(--light-color);
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #666;
}

.contact-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-block p {
    line-height: 1.8;
}

.contact-note {
    background: var(--light-color);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
    margin-top: 3rem;
}

.contact-note h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-note p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

.about-content {
    max-width: 1100px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 400;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.about-image-section {
    margin: 4rem 0;
    background-color: #B8A898;
}

.about-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-section {
    margin: 5rem 0;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--light-color);
    border-top: 3px solid var(--primary-color);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-about {
    padding: 4rem 2rem;
    background: var(--accent-color);
    text-align: center;
    color: white;
    margin-top: 5rem;
}

.cta-about h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.cta-about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.services-detailed {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    background: white;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 1;
    background-color: #A89682;
}

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

.service-detail-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    font-size: 0.95rem;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-color);
}

.booking-cta {
    padding: 4rem 2rem;
    background: var(--secondary-color);
    text-align: center;
    color: white;
}

.booking-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.booking-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thanks-content {
    margin-top: 80px;
    padding: 6rem 2rem;
    min-height: 60vh;
}

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

.thanks-wrapper h1 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

.thanks-details {
    background: var(--light-color);
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

#service-confirmation {
    font-weight: 600;
    color: var(--primary-color);
}

.email-display {
    color: var(--dark-color);
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    transition: background 0.3s, color 0.3s;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .overlay-text-box {
        position: static;
        max-width: 100%;
    }

    .detail-split {
        flex-direction: column;
    }

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

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

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

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