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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c19a6b;
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --bg-light: #fafafa;
    --bg-dark: #34495e;
    --border-color: #ddd;
}

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

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

.ad-notice {
    background-color: var(--bg-light);
    color: var(--text-dark);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 1px;
}

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

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

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

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

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

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.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(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
}

.intro-magazine {
    padding: 80px 20px;
    background-color: #ffffff;
}

.magazine-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.main-column {
    flex: 2;
}

.side-column {
    flex: 1;
}

.main-column h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 400;
    color: var(--primary-color);
}

.lead-text {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.6;
}

.main-column p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    object-fit: cover;
}

.info-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--accent-color);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.benefits-list li:last-child {
    border-bottom: none;
}

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

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 400;
    color: var(--primary-color);
}

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

.discovery-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    overflow: hidden;
}

.discovery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.discovery-card h3 {
    padding: 20px 20px 10px 20px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.discovery-card p {
    padding: 0 20px 20px 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.narrative-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.narrative-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.narrative-text {
    flex: 1;
}

.narrative-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.narrative-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.narrative-image {
    flex: 1;
}

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

blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    font-size: 1.1rem;
}

.services-preview {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.centered-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 400;
}

.centered-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #666;
}

.services-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    background-color: #ffffff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

.service-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.service-header h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.service-item p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.cta-select {
    align-self: flex-start;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.booking-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 400;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

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

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

.btn-submit {
    padding: 15px 40px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: center;
}

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

.testimonials-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 400;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    padding: 30px;
    background-color: rgba(255,255,255,0.1);
}

.testimonial p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.9rem;
    opacity: 0.9;
}

.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 50px 20px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

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

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

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.8;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 20px;
    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: 20px;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: var(--accent-color);
    color: #ffffff;
}

.btn-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.page-hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
}

.about-story {
    padding: 80px 20px;
    background-color: #ffffff;
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.story-image {
    flex: 1;
}

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

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

.mission-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.mission-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.team-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #666;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.values-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    padding: 25px;
    background-color: #ffffff;
    border-left: 4px solid var(--accent-color);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cta-about {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    text-align: center;
    color: var(--text-light);
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.services-detailed {
    padding: 60px 20px;
    background-color: #ffffff;
}

.service-full {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-full.reverse {
    flex-direction: row-reverse;
}

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

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

.service-price {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.service-details {
    list-style: none;
    margin: 20px 0;
}

.service-details li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.service-image-right {
    flex: 1;
}

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

.contact-info {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 400;
}

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

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

.contact-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-item .note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
    color: #666;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
}

.visual-caption p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

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

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 25px;
    background-color: #ffffff;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.map-note {
    padding: 40px 20px;
    background-color: #ffffff;
}

.centered-text {
    text-align: center;
    font-size: 1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #ffffff;
    min-height: 60vh;
}

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

.thanks-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.selected-service {
    font-size: 1.1rem;
    margin: 30px 0;
    padding: 20px;
    background-color: var(--bg-light);
}

.thanks-next {
    margin: 50px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.next-steps {
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
}

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

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.legal-page {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 400;
}

.updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-container p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-container ul,
.legal-container ol {
    margin: 15px 0 15px 20px;
}

.legal-container li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.data-table thead {
    background-color: var(--bg-light);
}

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

.data-table th {
    font-weight: bold;
    color: var(--primary-color);
}

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

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

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

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

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

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

    .narrative-container {
        flex-direction: column;
    }

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

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

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

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

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

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

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

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

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

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