/* 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: #2c3e50;
    background-color: #ffffff;
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #34495e;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #34495e;
}

p {
    margin-bottom: 1.4rem;
}

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #3498db;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1 1 300px;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #2ecc71;
}

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

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

/* Navigation */
.navigation {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-brand {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    color: #34495e;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2980b9;
}

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

/* Editorial Hero */
.editorial-hero {
    padding: 4rem 2rem 3rem;
    background-color: #f8f9fa;
}

.hero-content-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    margin-top: 1.5rem;
}

.hero-image-inline {
    margin: 3rem auto 0;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Editorial Text Block - Narrow Content */
.editorial-text-block {
    padding: 4rem 2rem;
}

.editorial-text-block.alt-bg {
    background-color: #f8f9fa;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

/* Editorial Image Section */
.editorial-image-section {
    padding: 3rem 2rem;
}

.full-width-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Inline CTA Box */
.inline-cta-box {
    background-color: #ecf0f1;
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid #2980b9;
}

.inline-cta-box p {
    margin-bottom: 1rem;
}

.inline-cta-box strong {
    color: #2c3e50;
}

.cta-text-link {
    color: #2980b9;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.cta-text-link:hover {
    color: #3498db;
}

/* Highlight Box */
.highlight-box {
    background-color: #fff9e6;
    border: 2px solid #f39c12;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 6px;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e67e22;
    margin: 0;
    line-height: 1.5;
}

/* CTA Button Inline */
.cta-button-inline {
    display: inline-block;
    background-color: #2980b9;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.cta-button-inline:hover {
    background-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

.cta-button-large {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    text-align: center;
}

.cta-button-large:hover {
    background-color: #2ecc71;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.cta-box-emphasis {
    background-color: #e8f4f8;
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 8px;
    text-align: center;
}

.cta-box-emphasis p {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* Testimonial Section */
.editorial-testimonial-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.testimonial {
    background-color: #ffffff;
    padding: 2.5rem;
    margin: 2rem 0;
    border-left: 5px solid #3498db;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Service Card Editorial */
.service-card-editorial {
    background-color: #ffffff;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card-editorial:hover {
    border-color: #2980b9;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card-editorial.featured {
    border-color: #27ae60;
    background-color: #f0fdf4;
}

.service-card-editorial.premium {
    border-color: #e67e22;
    background-color: #fef5e7;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #27ae60;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.service-card-editorial.premium .service-badge {
    background-color: #e67e22;
}

.service-card-editorial h3 {
    margin-top: 0;
    color: #2c3e50;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.service-savings {
    color: #e67e22;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.service-duration {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-details {
    margin: 1.5rem 0;
}

.service-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.service-details ul {
    margin-left: 1.5rem;
}

.service-details li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.service-ideal {
    background-color: #e8f4f8;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    color: #2c3e50;
}

.select-service-btn {
    background-color: #2980b9;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    width: 100%;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.select-service-btn:hover {
    background-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

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

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

.faq-item h3 {
    color: #2980b9;
    font-size: 1.2rem;
    margin-top: 0;
}

/* Simple List */
.simple-list {
    margin-left: 1.5rem;
}

.simple-list li {
    margin-bottom: 1rem;
}

/* Value Block */
.value-block {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.value-block:last-child {
    border-bottom: none;
}

/* Form Styles */
.editorial-form {
    margin-top: 2rem;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #d0d0d0;
    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: #2980b9;
}

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 1.1rem 3rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.submit-btn:hover {
    background-color: #2ecc71;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* Contact Page Styles */
.contact-info-block {
    margin: 2.5rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-info-block:last-of-type {
    border-bottom: none;
}

.contact-info-block h3 {
    color: #2980b9;
    margin-top: 0;
}

.info-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

.transport-info {
    margin: 1.5rem 0;
}

.transport-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-list {
    counter-reset: process-counter;
    list-style: none;
    margin-left: 0;
}

.process-list li {
    counter-increment: process-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #2980b9;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.contact-cta-box {
    background-color: #e8f4f8;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 6px;
}

.closing-text {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-top: 2rem;
    font-weight: 500;
}

/* Thanks Page */
.thanks-page-content {
    padding: 2rem;
}

.thanks-hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f0fdf4;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-weight: 700;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #555;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.thanks-details {
    padding: 3rem 2rem;
}

.next-steps {
    margin: 3rem 0;
}

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

.step-number {
    min-width: 50px;
    height: 50px;
    background-color: #2980b9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-top: 0;
    color: #2c3e50;
}

.service-reminder {
    background-color: #e8f4f8;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 6px;
}

.service-reminder h3 {
    margin-top: 0;
    color: #2980b9;
}

.thanks-info-box {
    background-color: #fff9e6;
    border: 2px solid #f39c12;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 6px;
}

.thanks-info-box h3 {
    margin-top: 0;
    color: #e67e22;
}

.preparation-list {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 6px;
}

.thanks-cta-section {
    margin: 4rem 0;
    text-align: center;
}

.thanks-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.thanks-link-btn {
    display: inline-block;
    background-color: #2980b9;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.thanks-link-btn:hover {
    background-color: #3498db;
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-page {
    background-color: #ffffff;
}

.legal-header {
    background-color: #f8f9fa;
    padding: 4rem 2rem 3rem;
    border-bottom: 3px solid #2980b9;
}

.legal-header h1 {
    max-width: 900px;
    margin: 0 auto 1rem;
}

.legal-intro {
    max-width: 900px;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    color: #555;
}

.last-updated {
    max-width: 900px;
    margin: 0 auto;
    color: #7f8c8d;
    font-style: italic;
}

.legal-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    color: #2980b9;
    margin-top: 0;
}

.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    text-align: left;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.warning-box {
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 0.95rem;
}

/* Footer */
.editorial-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

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

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .navigation {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .editorial-hero {
        padding: 2rem 1rem;
    }

    .editorial-text-block {
        padding: 2rem 1rem;
    }

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

    .service-card-editorial {
        padding: 1.5rem;
    }

    .service-price-large {
        font-size: 2rem;
    }

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

    .cookie-actions {
        width: 100%;
    }

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

    .step {
        flex-direction: column;
        gap: 1rem;
    }

    .thanks-links {
        flex-direction: column;
    }

    .thanks-link-btn {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .cta-button-inline,
    .cta-button-large,
    .submit-btn {
        width: 100%;
        text-align: center;
    }

    .select-service-btn {
        padding: 0.8rem 1.5rem;
    }
}