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

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

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

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

a {
    color: #1a5490;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3a6b;
}

/* Editorial Container - Narrow Centered Layout */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Header and Navigation */
.header-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a5490;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    color: #333;
    font-family: 'Arial', sans-serif;
}

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

/* Hero Editorial */
.hero-editorial {
    max-width: 780px;
    margin: 0 auto;
    padding: 4rem 1.5rem 2rem;
    text-align: left;
}

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    margin: 2rem 0;
}

.hero-image {
    width: 100%;
    border-radius: 4px;
}

/* Typography */
h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    font-weight: 600;
    color: #2c2c2c;
}

h4 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
    color: #333;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Inline Images */
.inline-image {
    margin: 2.5rem 0;
    border-radius: 4px;
}

/* Blockquotes / Testimonials */
blockquote,
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background-color: #f5f5f5;
    border-left: 4px solid #1a5490;
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
}

blockquote cite,
.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

/* Lists */
ul.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}

ul.benefits-list li {
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
}

ul.benefits-list li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #1a5490;
    font-size: 1.5rem;
    line-height: 1;
}

/* Section Alternating Backgrounds */
.section-alt {
    background-color: #ffffff;
    padding: 3rem 1.5rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

/* Info Cards */
.info-card {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
    border-left: 3px solid #1a5490;
}

.info-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.info-card p {
    margin-bottom: 0.5rem;
}

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

.btn-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #1a5490;
    color: #ffffff;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-inline:hover {
    background-color: #0d3a6b;
    color: #ffffff;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: #1a5490;
    color: #ffffff;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.btn-primary-large:hover {
    background-color: #0d3a6b;
    color: #ffffff;
}

.cta-section {
    text-align: center;
    padding: 3rem 0;
}

/* Forms */
.form-section {
    background-color: #f5f5f5;
    padding: 3rem 0;
    margin: 3rem 0;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
}

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

.btn-submit {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #1a5490;
    color: #ffffff;
    font-size: 1.1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.btn-submit:hover {
    background-color: #0d3a6b;
}

/* Services Page */
.services-list {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.service-item {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-header h3 {
    margin: 0;
    flex: 1;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
    font-family: 'Arial', sans-serif;
}

.service-image {
    margin: 1.5rem 0;
    border-radius: 4px;
}

.service-content p,
.service-content ul,
.service-content h4 {
    max-width: 680px;
}

.service-duration {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.btn-service {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 2rem;
    background-color: #1a5490;
    color: #ffffff;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-service:hover {
    background-color: #0d3a6b;
    color: #ffffff;
}

.price-card {
    background-color: #f5f5f5;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
    text-align: center;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5490;
    font-family: 'Arial', sans-serif;
}

.price-note {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: #666;
}

.price-discount {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

/* Contact Page */
.contact-info-section {
    margin: 2rem 0;
}

.contact-info-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.contact-info-item h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.faq-item {
    margin: 2rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item h3 {
    margin-top: 0;
    font-size: 1.15rem;
    color: #1a5490;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: #4caf50;
    color: #ffffff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.thanks-steps {
    margin: 2rem 0;
}

.thanks-step {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #1a5490;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Arial', sans-serif;
}

.step-content h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.thanks-note {
    background-color: #fff3cd;
    padding: 1rem;
    border-left: 3px solid #ffc107;
    font-size: 0.95rem;
    margin: 2rem 0;
}

.thanks-final {
    text-align: center;
    margin: 3rem 0;
}

/* Testimonials */
.testimonials-section {
    margin: 3rem 0;
}

.testimonial-card {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 3px solid #1a5490;
    border-radius: 4px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
}

/* Disclaimer */
.disclaimer-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

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

.legal-page h2 {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.legal-page h2:first-of-type {
    border-top: none;
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-page li {
    margin: 0.5rem 0;
}

.gdpr-purpose,
.gdpr-right,
.cookie-type {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 3px solid #1a5490;
}

.gdpr-purpose h3,
.gdpr-right h3,
.cookie-type h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

/* Footer */
.footer-editorial {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 3rem 1.5rem 1rem;
    margin-top: 4rem;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section a {
    color: #cccccc;
    font-size: 0.95rem;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-cookie-accept {
    background-color: #1a5490;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #0d3a6b;
}

.btn-cookie-reject {
    background-color: #e0e0e0;
    color: #333;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 2rem;
    }

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

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .content-narrow {
        padding: 2rem 1rem;
    }

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        margin-top: 0.5rem;
    }

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

    .cookie-buttons {
        justify-content: stretch;
        flex-direction: column;
    }

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

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

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

    .nav-brand a {
        font-size: 1.2rem;
    }

    .price-amount {
        font-size: 1.5rem;
    }
}