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

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

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f0e6d2;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: #6b5d4f;
    border-bottom: 1px solid #d4c5a9;
    font-family: 'Arial', sans-serif;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

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

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

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

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

.story-flow {
    background-color: #ffffff;
    padding: 50px 45px;
    margin-top: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 35px;
    background-color: #e8e4dc;
    overflow: hidden;
}

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

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

.intro-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 25px;
    font-style: italic;
}

/* Content Blocks */
.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #2c2c2c;
    font-weight: normal;
}

.content-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #3a3a3a;
    font-weight: normal;
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #3a3a3a;
}

.content-block ul,
.content-block ol {
    margin-left: 30px;
    margin-bottom: 22px;
}

.content-block li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #3a3a3a;
}

/* Inline Images */
.inline-image-block {
    width: 100%;
    margin: 35px 0;
    background-color: #e8e4dc;
    overflow: hidden;
}

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

/* Service Cards Inline */
.service-card-inline {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
}

.service-card-inline h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-card-inline p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-card-inline .price {
    font-size: 22px;
    color: #8b6f47;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Service Card Detailed */
.service-card-detailed {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.service-card-detailed h2 {
    font-size: 30px;
    margin-bottom: 15px;
    margin-top: 20px;
}

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

/* Testimonials */
.testimonial-inline {
    margin: 50px 0;
    padding: 35px 40px;
    background-color: #f7f5f1;
    border-left: 4px solid #8b6f47;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 15px;
}

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

/* Insight Section */
.insight-section {
    background-color: #faf8f4;
    padding: 40px;
    margin: 50px -45px;
}

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

.cta-link {
    color: #8b6f47;
    font-size: 18px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #6b5437;
}

.cta-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px 0;
}

/* Forms */
.contact-form {
    margin: 40px 0;
    padding: 40px;
    background-color: #fafaf8;
    border: 1px solid #e0e0e0;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: 'Arial', sans-serif;
    color: #2c2c2c;
}

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

.submit-button {
    padding: 15px 40px;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Page Headers */
.page-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

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

.last-updated {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

/* Contact Page */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-details {
    margin-bottom: 30px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-item .note {
    font-size: 15px;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 10px;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ececec;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-header {
    text-align: center;
}

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

.next-steps {
    margin: 40px 0;
}

.step-item {
    margin-bottom: 35px;
    padding: 25px;
    background-color: #fafaf8;
    border-left: 3px solid #8b6f47;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.step-item p {
    font-size: 17px;
    line-height: 1.6;
}

.preparation-list {
    margin: 30px 0;
    padding-left: 30px;
}

.preparation-list li {
    font-size: 17px;
    margin-bottom: 15px;
}

.thank-you-note {
    margin: 50px 0;
    padding: 30px;
    background-color: #f7f5f1;
    text-align: center;
}

.thank-you-note p {
    font-size: 18px;
    margin-bottom: 15px;
}

.selected-service-info {
    margin: 30px 0;
    padding: 25px;
    background-color: #e8f4e8;
    border-radius: 5px;
}

/* Legal Content */
.legal-content h2 {
    margin-top: 45px;
}

.legal-content h3 {
    margin-top: 30px;
}

.cookie-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #d0d0d0;
    font-size: 16px;
}

.cookie-table th {
    background-color: #f0f0f0;
    font-weight: bold;
}

.no-link {
    color: #3a3a3a;
}

/* Footer */
.main-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

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

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

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

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

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

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

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

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #4a4a4a;
    font-size: 13px;
    line-height: 1.6;
    color: #888;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    color: #d0d0d0;
    margin: 0;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 25px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

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

.cookie-reject {
    background-color: #555555;
    color: #ffffff;
}

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

/* Final Note */
.final-note {
    margin-top: 60px;
    padding: 40px;
    background-color: #faf8f4;
    border-top: 2px solid #8b6f47;
}

.final-note p {
    font-size: 19px;
    line-height: 1.8;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .story-flow {
        padding: 30px 20px;
    }

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

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

    .content-block h2 {
        font-size: 24px;
    }

    .content-block p {
        font-size: 17px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .insight-section {
        margin: 40px -20px;
        padding: 30px 20px;
    }

    .contact-form {
        padding: 25px 20px;
    }
}