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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

/* Ad Notice */
.ad-notice {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #007bff;
}

/* Editorial Container - Main Layout Archetype */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 30px;
}

/* Content Sections */
.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 1.875rem;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #212529;
    font-weight: 600;
}

.content-section h3 {
    font-size: 1.375rem;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #343a40;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin-bottom: 20px;
    margin-left: 25px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Inline Images */
.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
}

/* Insight Block */
.insight-block {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #007bff;
    margin: 40px 0;
}

/* Testimonials */
.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #6c757d;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: #495057;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-text {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #007bff;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.btn-text:hover {
    color: #0056b3;
    border-bottom-color: #0056b3;
}

/* Services Preview */
.service-list-editorial {
    margin: 30px 0;
}

.service-item-editorial {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e9ecef;
}

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

.service-item-editorial h3 {
    font-size: 1.375rem;
    margin-bottom: 10px;
    color: #212529;
}

.service-item-editorial p {
    margin-bottom: 12px;
    color: #495057;
}

.price-tag {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #007bff;
    margin-top: 8px;
}

/* Form Section */
.form-section {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 50px 0;
    border-radius: 4px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #343a40;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

/* Disclaimer */
.disclaimer-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

.disclaimer-text {
    font-size: 0.9375rem;
    color: #6c757d;
    line-height: 1.7;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
}

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

.service-detail-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid #e9ecef;
}

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

.service-detail-content {
    margin-bottom: 30px;
}

.service-intro {
    font-size: 1.0625rem;
    color: #495057;
    margin-bottom: 25px;
}

.service-includes h3,
.service-situations h3 {
    font-size: 1.125rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #343a40;
}

.service-includes ul {
    list-style: disc;
    margin-left: 25px;
}

.service-includes li {
    margin-bottom: 10px;
    color: #495057;
}

.service-pricing-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

.price-note {
    font-size: 0.9375rem;
    color: #6c757d;
    margin-bottom: 20px;
}

/* Contact Page */
.contact-info-block {
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e9ecef;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #212529;
}

.contact-item p {
    margin-bottom: 8px;
    color: #495057;
}

.note-text {
    font-size: 0.9375rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 8px;
}

.document-list {
    list-style: disc;
    margin-left: 25px;
    margin-top: 20px;
}

.document-list li {
    margin-bottom: 10px;
}

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

.faq-item h3 {
    font-size: 1.125rem;
    color: #212529;
    margin-bottom: 10px;
}

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

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

.thanks-header {
    margin-bottom: 50px;
}

.thanks-header h1 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: #28a745;
}

.preparation-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
    text-align: left;
    margin: 30px 0;
}

.preparation-box h3 {
    font-size: 1.125rem;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #343a40;
}

.preparation-box h3:first-child {
    margin-top: 0;
}

.preparation-box ul {
    margin-left: 25px;
    list-style: disc;
}

.next-steps-list {
    list-style: decimal;
    margin-left: 25px;
    text-align: left;
    margin-top: 20px;
}

.links-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.link-item {
    display: block;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
    text-align: left;
}

.link-item:hover {
    background-color: #e9ecef;
}

.link-item h3 {
    font-size: 1.25rem;
    color: #007bff;
    margin-bottom: 8px;
}

.link-item p {
    color: #6c757d;
    margin: 0;
}

.contact-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: #007bff;
    margin: 20px 0;
}

.thanks-final {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

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

.page-header {
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.25rem;
    margin-bottom: 15px;
    color: #212529;
}

.legal-intro {
    font-size: 1rem;
    color: #6c757d;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 40px 20px;
    margin-top: 80px;
}

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

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

.footer-column h3 {
    font-size: 1.125rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px;
    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: 20px;
    flex-wrap: wrap;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #28a745;
    color: #ffffff;
}

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

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        padding: 15px 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
        text-align: center;
        width: 100%;
    }

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

    .hero-editorial h1 {
        font-size: 1.875rem;
    }

    .lead-text {
        font-size: 1.125rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section h3 {
        font-size: 1.25rem;
    }

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

    .service-detail-card {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}

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

    .price-display {
        font-size: 2rem;
    }

    .main-nav {
        padding: 15px;
    }

    .main-footer {
        padding: 30px 20px 15px;
    }
}