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

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

.ad-disclosure {
    background-color: #f5f5f5;
    color: #666;
    font-size: 12px;
    text-align: center;
    padding: 8px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.2s ease;
}

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

.editorial-content {
    background-color: #fafafa;
}

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

.hero-image-wrapper {
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    background-color: #e8e4df;
}

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

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

.hero-text-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 15px;
    font-weight: 400;
}

.hero-text-overlay p {
    font-size: 22px;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.9;
}

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

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
}

h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 400;
    color: #1a1a1a;
}

h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2c2c2c;
}

h4 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c2c2c;
}

p {
    margin-bottom: 22px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 35px;
}

.inline-image-block {
    margin: 45px 0;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    background-color: #e8e4df;
}

.image-caption {
    font-size: 15px;
    color: #777;
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

blockquote.testimonial-inline {
    margin: 40px 0;
    padding: 25px 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #d4a574;
}

blockquote.testimonial-inline p {
    font-size: 20px;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 10px;
}

blockquote.testimonial-inline cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.cta-inline {
    margin: 35px 0;
    text-align: center;
}

.link-cta {
    color: #c77a4d;
    text-decoration: underline;
    font-size: 19px;
    transition: color 0.2s ease;
}

.link-cta:hover {
    color: #a55d35;
}

.services-section-editorial {
    margin: 50px 0;
}

.service-card-editorial {
    margin-bottom: 50px;
    background-color: #ffffff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

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

.service-content {
    padding: 30px;
}

.service-content h2,
.service-content h3 {
    margin-top: 0;
    font-size: 26px;
}

.service-duration,
.service-details {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #c77a4d;
    margin-top: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.booking-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.2s ease;
}

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

.btn-submit,
.btn-cta-large {
    display: inline-block;
    padding: 14px 35px;
    background-color: #c77a4d;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.2s ease;
}

.btn-submit:hover,
.btn-cta-large:hover {
    background-color: #a55d35;
}

.cta-final {
    margin: 50px 0;
    text-align: center;
}

ul {
    margin: 20px 0;
    padding-left: 30px;
}

ul li {
    margin-bottom: 10px;
}

.contact-info-section {
    margin: 40px 0;
}

.contact-block {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.email-display {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 20px;
}

.email-note,
.note {
    font-size: 15px;
    color: #777;
    font-style: italic;
}

.faq-section {
    margin: 30px 0;
}

.faq-item {
    margin-bottom: 30px;
}

.thanks-page-content {
    text-align: left;
}

.thanks-message-box {
    padding: 30px;
    background-color: #f0f8f0;
    border-left: 4px solid #5a9a5a;
    margin: 30px 0;
}

.selected-service-info {
    font-weight: 600;
    color: #2c5a2c;
}

.recommendation-list {
    list-style: disc;
    padding-left: 25px;
}

.recommendation-list li {
    margin-bottom: 12px;
}

.booking-cta-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.legal-page h2 {
    margin-top: 40px;
}

.legal-page h3 {
    margin-top: 30px;
    font-size: 20px;
}

.last-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
}

.main-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 50px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-column p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #3a3a3a;
    border-radius: 3px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 13px;
}

.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: 2000;
    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;
    flex-wrap: wrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.2s ease;
}

.btn-accept {
    background-color: #5a9a5a;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #4a8a4a;
}

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

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

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .hero-text-overlay p {
        font-size: 18px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

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

    .narrow-column {
        padding: 0 15px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}