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

body {
    font-family: 'Georgia', 'Garamond', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafaf8;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f0e6d2;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6b5d4f;
    border-bottom: 1px solid #d4c4a8;
}

.ad-disclosure p {
    margin: 0;
}

/* Editorial Navigation */
.editorial-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

/* Editorial Content Container */
.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 30px;
}

/* Editorial Hero */
.editorial-hero {
    margin-bottom: 60px;
}

.hero-text {
    text-align: center;
    margin-bottom: 40px;
}

.editorial-hero h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: normal;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 22px;
    color: #5a5a5a;
    line-height: 1.6;
    font-style: italic;
}

.hero-image {
    margin: 0;
    background-color: #e8e4dc;
}

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

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

.page-header h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: normal;
    margin-bottom: 15px;
}

.header-lead {
    font-size: 20px;
    color: #6a6a6a;
    font-style: italic;
}

/* Text Sections */
.text-section {
    margin-bottom: 40px;
}

.text-section h2 {
    font-size: 32px;
    line-height: 1.3;
    color: #2a2a2a;
    font-weight: normal;
    margin-bottom: 20px;
    margin-top: 50px;
}

.text-section h3 {
    font-size: 24px;
    line-height: 1.4;
    color: #3a3a3a;
    font-weight: normal;
    margin-bottom: 15px;
    margin-top: 30px;
}

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

.text-section ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

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

.text-section a {
    color: #8b6f47;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.text-section a:hover {
    color: #6b5437;
}

/* Inline Images */
.inline-image {
    margin: 50px 0;
    background-color: #e8e4dc;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.inline-image figcaption {
    padding: 15px 20px;
    font-size: 15px;
    color: #6a6a6a;
    text-align: center;
    font-style: italic;
}

/* CTA Inline */
.cta-inline {
    margin: 50px 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    font-size: 20px;
    color: #8b6f47;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 2px solid #8b6f47;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #6b5437;
    border-bottom-color: #6b5437;
}

/* Testimonial Section */
.testimonial-section {
    margin: 60px 0;
    padding: 40px 30px;
    background-color: #f5f2ed;
    border-left: 4px solid #8b6f47;
}

.testimonial-section blockquote {
    font-size: 20px;
    line-height: 1.6;
    color: #3a3a3a;
    font-style: italic;
}

.testimonial-section cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    color: #6a6a6a;
    font-style: normal;
}

/* Insight Box */
.insight-box {
    margin: 50px 0;
    padding: 35px 30px;
    background-color: #fff9ed;
    border: 1px solid #e8dcc0;
}

.insight-box h3 {
    font-size: 24px;
    color: #2a2a2a;
    margin-bottom: 15px;
    font-weight: normal;
}

.insight-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 50px 0;
}

.service-card {
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e0ddd5;
    transition: box-shadow 0.3s ease;
}

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

.service-image {
    margin: 0 0 20px 0;
    background-color: #e8e4dc;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card h2,
.service-card h3 {
    font-size: 26px;
    color: #2a2a2a;
    margin-bottom: 15px;
    font-weight: normal;
}

.service-desc {
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.service-details {
    font-size: 15px;
    line-height: 1.7;
    color: #6a6a6a;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    color: #8b6f47;
    font-weight: bold;
    margin-bottom: 20px;
}

.select-service-btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

.select-service-btn:hover {
    background-color: #6b5437;
}

/* Form Container */
.form-container {
    margin: 60px 0;
    padding: 40px 35px;
    background-color: #f5f2ed;
    border: 1px solid #e0ddd5;
}

.form-container.hidden {
    display: none;
}

.form-container h2 {
    font-size: 32px;
    color: #2a2a2a;
    margin-bottom: 20px;
    font-weight: normal;
}

.form-intro {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    color: #3a3a3a;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0cdc5;
    background-color: #ffffff;
    font-family: 'Georgia', serif;
    color: #2a2a2a;
}

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

.submit-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

.submit-btn:hover {
    background-color: #6b5437;
}

/* Thanks Page */
.thanks-container {
    text-align: left;
}

/* Disclaimer Section */
.disclaimer-section {
    margin: 60px 0 40px 0;
    padding: 25px 30px;
    background-color: #f9f7f3;
    border: 1px solid #e8e4dc;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #6a6a6a;
    margin: 0;
}

/* Footer */
.editorial-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e0ddd5;
    text-align: center;
}

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

.footer-nav a {
    font-size: 14px;
    color: #6a6a6a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #8b6f47;
}

.references-section {
    margin-bottom: 30px;
    text-align: left;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.references-section h4 {
    font-size: 18px;
    color: #3a3a3a;
    margin-bottom: 15px;
    font-weight: normal;
}

.references-section ol {
    margin-left: 20px;
}

.references-section li {
    font-size: 14px;
    line-height: 1.6;
    color: #6a6a6a;
    margin-bottom: 8px;
}

.references-section a {
    color: #8b6f47;
    text-decoration: none;
}

.references-section a:hover {
    text-decoration: underline;
}

.footer-copy {
    font-size: 13px;
    color: #8a8a8a;
    margin-bottom: 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 25px 30px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.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;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    min-width: 300px;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

.cookie-btn.accept {
    background-color: #8b6f47;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #6b5437;
}

.cookie-btn.reject {
    background-color: #5a5a5a;
    color: #ffffff;
}

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

/* Legal Page Styles */
.legal-page .text-section {
    margin-bottom: 35px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .editorial-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

    .hero-lead {
        font-size: 18px;
    }

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

    .text-section h2 {
        font-size: 26px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-content p {
        min-width: auto;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .editorial-hero h1 {
        font-size: 28px;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .select-service-btn {
        width: 100%;
    }

    .submit-btn {
        width: 100%;
    }
}