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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #6b7fa8;
    --accent-color: #8b9dc3;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 15px;
}

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

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

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: white;
    color: var(--primary-color);
}

.btn-cookie:hover {
    background-color: var(--bg-light);
}

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

/* Navigation */
.nav-minimal {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

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

.nav-links a {
    font-size: 16px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

/* Hero Section */
.editorial-hero {
    margin-bottom: 60px;
    text-align: center;
}

.editorial-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 40px;
}

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

/* Editorial Text Content */
.editorial-text {
    font-size: 19px;
    line-height: 1.8;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.editorial-text p {
    margin-bottom: 24px;
}

.editorial-text h2 {
    font-size: 32px;
    margin: 50px 0 24px;
    color: var(--primary-color);
    font-weight: 600;
}

.editorial-text h3 {
    font-size: 24px;
    margin: 35px 0 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.inline-image {
    margin: 40px 0;
    border-radius: 4px;
}

.inline-cta {
    margin: 45px 0;
    text-align: center;
}

.cta-link {
    font-size: 20px;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.highlight-box {
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
}

.highlight-box p {
    margin: 0;
    font-size: 21px;
    line-height: 1.6;
}

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

.insight-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.section-cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    margin: 30px 0;
    font-size: 18px;
    transition: all 0.3s ease;
}

.section-cta-btn:hover {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow-hover);
}

/* Services Section - Editorial Style */
.services-editorial {
    margin: 60px 0;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.services-editorial h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 15px;
}

.service-price {
    font-size: 22px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-top: 15px;
}

/* Form Section */
.form-section-editorial {
    margin: 70px 0;
    padding: 50px 40px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.form-section-editorial h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-muted);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    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: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    box-shadow: var(--shadow-hover);
}

/* Testimonials */
.testimonials-editorial {
    margin: 60px 0;
}

.testimonials-editorial h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.testimonial p {
    margin-bottom: 15px;
    font-size: 20px;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-style: normal;
    color: var(--text-muted);
}

/* Final CTA */
.final-cta-editorial {
    text-align: center;
    margin: 80px 0 40px;
    padding: 50px 30px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.final-cta-editorial h2 {
    margin-bottom: 20px;
}

.final-cta-editorial p {
    margin-bottom: 30px;
    font-size: 20px;
}

.btn-final-cta {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

/* Page Header (for subpages) */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    font-style: italic;
}

/* Services Detail Page */
.services-detail {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}

.service-detail-card {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail-card img {
    margin-bottom: 30px;
    border-radius: 4px;
}

.service-detail-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-price-large {
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 20px 0 30px;
}

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

.service-list li {
    margin-bottom: 12px;
}

.btn-service {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow-hover);
}

.services-faq {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
}

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

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

/* Contact Page */
.contact-section {
    margin-top: 40px;
}

.contact-content {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-detail p {
    margin-bottom: 5px;
}

.contact-note {
    font-size: 16px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 10px;
}

.contact-image {
    flex: 1;
    min-width: 300px;
}

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

.contact-extra {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.expectation-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.expectation-item {
    flex: 1;
    min-width: 250px;
}

.expectation-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.location-info {
    margin: 50px 0;
}

.faq-contact {
    margin: 50px 0;
}

/* Thanks Page */
.thanks-wrapper {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 22px;
    margin-bottom: 50px;
    color: var(--text-muted);
}

.thanks-details {
    text-align: left;
    margin: 50px 0;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 4px;
}

.thanks-step {
    margin-bottom: 30px;
}

.thanks-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.selected-service-box {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 4px;
    margin: 40px 0;
    border-left: 4px solid var(--secondary-color);
}

.selected-service-box h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

#service-name {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary-color);
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.thanks-extra {
    margin: 50px 0;
    text-align: left;
}

.thanks-quote {
    margin: 60px 0;
}

.thanks-quote blockquote {
    font-size: 24px;
    font-style: italic;
    color: var(--text-muted);
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

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

.legal-page ul,
.legal-page ol {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-page li {
    margin-bottom: 10px;
}

.legal-page table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.cookies-table {
    background-color: var(--bg-light);
}

.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.legal-cta {
    margin: 60px 0 40px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 4px;
    text-align: center;
}

.legal-cta h2 {
    margin-bottom: 15px;
}

.legal-cta p {
    margin-bottom: 25px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
    margin-top: 80px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-column a {
    display: block;
    color: white;
    opacity: 0.85;
    margin-bottom: 8px;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

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

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

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

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

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

    .editorial-text {
        font-size: 17px;
    }

    .lead-paragraph {
        font-size: 19px;
    }

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

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

    .expectation-grid {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

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

    .btn-final-cta,
    .btn-submit,
    .section-cta-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
}