/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #8b5a3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5c3a24;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
    font-size: 15px;
}

.cookie-content a {
    color: #f4a460;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-cookie {
    background-color: #8b5a3c;
    color: #fff;
}

.btn-cookie:hover {
    background-color: #5c3a24;
}

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

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.nav-minimal {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #2a2a2a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 16px;
    color: #555;
    font-family: 'Arial', sans-serif;
}

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

/* Editorial Container - EDITORIAL STORY Archetype */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

.hero-image-wrapper {
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: auto;
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.hero-subtitle {
    font-size: 22px;
    color: #666;
    font-style: italic;
}

.editorial-intro {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 21px;
    line-height: 1.65;
    color: #3a3a3a;
    margin-bottom: 20px;
}

/* Story Section */
.story-section {
    margin-bottom: 50px;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: normal;
    color: #1a1a1a;
}

.story-section p {
    margin-bottom: 20px;
}

.story-section em {
    font-style: italic;
    color: #555;
}

.inline-image {
    margin: 40px 0;
}

.inline-image img {
    border-radius: 4px;
}

/* Insight Block */
.insight-block {
    background-color: #f9f7f4;
    padding: 40px;
    margin: 50px 0;
    border-left: 4px solid #8b5a3c;
}

.insight-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: normal;
    color: #1a1a1a;
}

.insight-content p {
    margin-bottom: 15px;
}

/* Services Preview */
.services-preview {
    margin: 60px 0;
}

.services-preview h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: normal;
}

.section-intro {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
}

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

.service-card-ed {
    padding: 30px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.service-card-ed h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: normal;
    color: #1a1a1a;
}

.service-card-ed p {
    margin-bottom: 15px;
    font-size: 17px;
}

.price-tag {
    font-size: 28px;
    color: #8b5a3c;
    font-weight: bold;
    margin: 15px 0;
    font-family: 'Arial', sans-serif;
}

.cta-inline {
    display: inline-block;
    color: #8b5a3c;
    font-size: 17px;
    border-bottom: 2px solid #8b5a3c;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: #5c3a24;
    border-bottom-color: #5c3a24;
}

/* Testimonial */
.testimonial-section {
    margin: 50px 0;
}

.testimonial-ed {
    border-left: 4px solid #ddd;
    padding-left: 30px;
    font-style: italic;
    color: #444;
}

.testimonial-ed p {
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-ed cite {
    font-style: normal;
    font-size: 16px;
    color: #888;
}

/* Deep Dive Section */
.deep-dive {
    margin: 60px 0;
}

.deep-dive h2 {
    font-size: 34px;
    margin-bottom: 25px;
    font-weight: normal;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b5a3c;
    font-size: 20px;
}

/* CTA Sections */
.cta-section-mid {
    margin: 60px 0;
    padding: 50px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.cta-box {
    text-align: center;
}

.cta-box h3 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: normal;
}

.cta-box p {
    font-size: 19px;
    margin-bottom: 30px;
    color: #555;
}

.btn-primary {
    display: inline-block;
    background-color: #8b5a3c;
    color: #fff;
    padding: 16px 40px;
    font-size: 17px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-primary:hover {
    background-color: #5c3a24;
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #8b5a3c;
    padding: 16px 40px;
    font-size: 17px;
    border: 2px solid #8b5a3c;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #8b5a3c;
    color: #fff;
}

/* Approach Section */
.approach-section {
    margin: 50px 0;
}

.approach-section h2 {
    font-size: 34px;
    margin-bottom: 25px;
    font-weight: normal;
}

.approach-section p {
    margin-bottom: 20px;
}

/* Final CTA Editorial */
.final-cta-editorial {
    margin: 60px 0 40px;
    text-align: center;
}

.final-cta-editorial h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: normal;
}

.final-cta-editorial p {
    font-size: 19px;
    color: #555;
}

/* Booking Section */
.booking-section {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: #f9f7f4;
    border-radius: 4px;
}

.booking-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: normal;
    text-align: center;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: #8b5a3c;
    color: #fff;
    padding: 16px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-submit:hover {
    background-color: #5c3a24;
}

/* Additional Info */
.additional-info {
    margin: 40px 0;
}

.small-text {
    font-size: 15px;
    color: #777;
    text-align: center;
    font-style: italic;
}

/* Page Header */
.page-header {
    margin-bottom: 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: normal;
    color: #1a1a1a;
}

.header-subtitle {
    font-size: 22px;
    color: #666;
    font-style: italic;
}

/* Values Section */
.values-section {
    margin: 50px 0;
}

.values-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: normal;
}

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

.values-list li {
    margin-bottom: 25px;
    padding-left: 0;
}

.values-list strong {
    color: #8b5a3c;
    font-size: 19px;
}

/* Team Section */
.team-section {
    margin: 50px 0;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: normal;
}

.team-section p {
    margin-bottom: 20px;
}

/* Mission Section */
.mission-section {
    margin: 50px 0;
    padding: 40px;
    background-color: #f0ede8;
    border-radius: 4px;
}

.mission-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: normal;
}

.mission-section p {
    margin-bottom: 15px;
}

/* Services Detailed */
.services-detailed {
    margin: 40px 0;
}

.service-detail {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e5e5e5;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-header-detail {
    margin-bottom: 25px;
}

.service-header-detail h2 {
    font-size: 34px;
    margin-bottom: 15px;
    font-weight: normal;
}

.price-large {
    font-size: 32px;
    color: #8b5a3c;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.service-detail h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    font-weight: normal;
}

.service-detail p {
    margin-bottom: 20px;
}

.service-detail ul {
    margin: 20px 0 20px 30px;
}

.service-detail ul li {
    margin-bottom: 12px;
}

/* Comparison Section */
.comparison-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f9f7f4;
    border-radius: 4px;
}

.comparison-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: normal;
}

.comparison-section p {
    margin-bottom: 15px;
}

/* Contact Info */
.contact-info-section {
    margin: 50px 0;
}

.contact-block {
    margin-bottom: 50px;
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: normal;
}

.contact-block p {
    margin-bottom: 10px;
}

.contact-link {
    font-size: 20px;
    color: #8b5a3c;
    border-bottom: 1px solid #8b5a3c;
}

.contact-desc {
    margin-top: 15px;
    font-size: 16px;
    color: #666;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    margin: 60px 0;
}

.faq-section h2 {
    font-size: 34px;
    margin-bottom: 40px;
    font-weight: normal;
}

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

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: normal;
    color: #1a1a1a;
}

.faq-item p {
    color: #555;
}

/* Thanks Section */
.thanks-section {
    margin: 80px 0;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: normal;
}

.thanks-details {
    margin: 30px 0;
    padding: 25px;
    background-color: #f9f7f4;
    border-radius: 4px;
    font-size: 19px;
}

.thanks-content h2 {
    font-size: 30px;
    margin: 50px 0 25px;
    font-weight: normal;
    text-align: left;
}

.next-steps {
    text-align: left;
    margin: 30px 0;
    list-style: none;
}

.next-steps li {
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b5a3c;
    font-size: 20px;
    font-weight: bold;
}

.thanks-cta {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: normal;
}

.legal-intro {
    font-size: 16px;
    color: #888;
    margin-bottom: 50px;
}

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

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: normal;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 21px;
    margin: 25px 0 15px;
    font-weight: normal;
}

.legal-section p {
    margin-bottom: 15px;
}

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

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

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: #ccc;
    padding: 40px 0;
    margin-top: 80px;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

.footer-links a:hover {
    color: #f4a460;
}

.footer-copy {
    font-size: 14px;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 15px;
    }

    .editorial-container {
        padding: 40px 20px;
    }

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

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

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

    .story-section h2,
    .services-preview h2,
    .deep-dive h2 {
        font-size: 28px;
    }

    .insight-block {
        padding: 25px;
    }

    .price-tag {
        font-size: 24px;
    }

    .service-card-ed h3 {
        font-size: 22px;
    }

    .page-header h1 {
        font-size: 34px;
    }

    .header-subtitle {
        font-size: 19px;
    }

    .booking-section {
        padding: 30px 20px;
    }

    .service-header-detail h2 {
        font-size: 28px;
    }

    .price-large {
        font-size: 26px;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }

    .thanks-cta {
        flex-direction: column;
        align-items: center;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-reject {
        width: 100%;
    }
}