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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f4f4f4;
    color: #666;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Arial', sans-serif;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #ffffff;
}

.hero-text-overlay h1 {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 15px;
    max-width: 800px;
    line-height: 1.2;
}

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

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
}

.intro-narrative {
    padding: 80px 0 60px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.image-break {
    margin: 70px 0;
    text-align: center;
    background-color: #f5f5f5;
}

.image-break img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
}

.philosophy-section,
.services-preview,
.reservation-form-section,
.final-narrative,
.about-intro,
.values-section,
.team-section,
.philosophy-deep,
.evolution-section,
.invitation-section,
.services-intro,
.services-detailed,
.services-note,
.contact-intro,
.contact-details-section,
.practical-info,
.visit-invitation {
    padding: 60px 0;
}

.philosophy-section h2,
.services-preview h2,
.reservation-form-section h2,
.values-section h2,
.team-section h2,
.philosophy-deep h2,
.evolution-section h2,
.services-intro h2,
.practical-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 400;
    color: #1a1a1a;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.card-content {
    padding: 35px;
}

.card-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

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

.price {
    font-size: 28px;
    font-weight: 600;
    color: #2c5f2d;
    margin: 20px 0;
    display: block;
}

.select-service {
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.select-service:hover {
    background-color: #234d24;
}

.editorial-form {
    margin-top: 40px;
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e8e8e8;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: 'Georgia', serif;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
    background-color: #ffffff;
}

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

.submit-btn {
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #234d24;
}

.closing-text {
    font-size: 20px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 30px;
    font-style: italic;
}

.inline-cta {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    margin-right: 15px;
}

.inline-cta:hover {
    background-color: #234d24;
}

.inline-cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5f2d;
    text-decoration: none;
    padding: 14px 32px;
    font-size: 16px;
    border: 2px solid #2c5f2d;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.inline-cta-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.site-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 0 20px;
    margin-top: 100px;
}

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

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

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 30px;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #999999;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 30px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2c5f2d;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    color: #2c2c2c;
}

.cookie-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.cookie-btn.accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #234d24;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

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

.page-header-editorial {
    padding: 80px 30px 40px;
    text-align: center;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e8e8e8;
}

.page-header-editorial h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.header-subtitle {
    font-size: 18px;
    color: #666666;
    font-weight: 300;
}

.content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 40px 0;
    object-fit: cover;
    background-color: #f0f0f0;
}

.service-item-editorial {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.service-item-editorial.reverse {
    flex-direction: row-reverse;
}

.service-content-left,
.service-content-right {
    flex: 1;
    padding: 20px;
}

.service-image-right,
.service-image-left {
    flex: 1;
    background-color: #f0f0f0;
}

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

.service-item-editorial h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #1a1a1a;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.service-includes {
    font-size: 16px;
    margin: 25px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border-left: 3px solid #2c5f2d;
}

.pricing-block {
    margin: 30px 0;
}

.price-large {
    font-size: 36px;
    font-weight: 600;
    color: #2c5f2d;
    display: block;
}

.price-note {
    font-size: 14px;
    color: #666666;
    display: block;
    margin-top: 5px;
}

.contact-info-block {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #2c5f2d;
}

.contact-info-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.contact-info-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
    color: #1a1a1a;
}

.next-steps {
    background-color: #f8f8f8;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #2c5f2d;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}

.next-steps ul {
    margin-left: 30px;
    margin-top: 15px;
}

.next-steps ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.thanks-actions {
    margin-top: 40px;
}

.legal-page .narrow-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #2c2c2c;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #3a3a3a;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.legal-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #234d24;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: #ffffff;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e8e8e8;
    font-size: 15px;
}

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table td {
    color: #3a3a3a;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .logo {
        font-size: 20px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .lead-text {
        font-size: 20px;
    }

    .narrow-content p {
        font-size: 16px;
    }

    .service-item-editorial {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}