* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c6ba8;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #555;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #ddd;
    --success-color: #27ae60;
}

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

.editorial-nav {
    background-color: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.editorial-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-editorial {
    margin-bottom: 4rem;
}

.hero-text-centered {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-text-centered h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.narrow-text {
    max-width: 650px;
    margin: 0 auto;
}

.narrow-text h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.narrow-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.narrow-text h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-dark);
}

.narrow-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.narrow-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.narrow-text ul li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.story-intro {
    margin: 4rem 0;
}

.inline-cta-block {
    margin: 4rem 0;
}

.cta-editorial {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
    text-align: center;
}

.cta-editorial h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cta-link-inline {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.05rem;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.cta-link-inline:hover {
    background-color: #d35400;
}

.service-card-editorial {
    margin: 4rem 0;
}

.service-card-editorial img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.service-text h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 1.5rem 0;
    font-family: 'Arial', sans-serif;
}

.testimonial-inline {
    margin: 4rem 0;
}

.testimonial-inline blockquote {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    font-size: 1.15rem;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    color: var(--text-light);
    font-size: 1rem;
}

.value-proposition {
    margin: 4rem 0;
}

.cta-mid-section {
    margin: 5rem 0;
}

.cta-box-centered {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    text-align: center;
    border-radius: 8px;
    color: white;
}

.cta-box-centered h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.cta-button-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.cta-button-primary:hover {
    background-color: #d35400;
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.process-section {
    margin: 4rem 0;
}

.process-step {
    margin: 2.5rem 0;
}

.form-section {
    margin: 5rem 0;
    background-color: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 8px;
}

.editorial-form {
    max-width: 550px;
    margin: 2rem auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 1.1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.final-assurance {
    margin: 4rem 0;
}

.editorial-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

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

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand p {
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-copy {
    margin-top: 2rem;
    color: #aaa;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--accent-color);
}

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

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
}

.sticky-cta-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
}

.sticky-cta-btn:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.page-header {
    margin-bottom: 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.header-intro {
    font-size: 1.2rem;
    color: var(--text-light);
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 2rem 0;
}

.value-block {
    margin: 2.5rem 0;
}

.commitment-list {
    list-style: none;
    margin: 2rem 0;
}

.commitment-list li {
    padding: 1rem;
    background-color: var(--bg-light);
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary-color);
    font-size: 1.05rem;
}

.cta-about,
.cta-services,
.cta-contact {
    margin: 4rem 0;
    text-align: center;
}

.service-detail-card {
    margin: 4rem 0;
}

.service-detail-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.service-price-large {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin: 1rem 0 2rem;
    font-family: 'Arial', sans-serif;
}

.pricing-note {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
    margin: 4rem 0;
    border-radius: 8px;
}

.contact-details {
    margin: 3rem 0;
}

.contact-item {
    margin: 2.5rem 0;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.note-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.location-section,
.response-time,
.virtual-meeting {
    margin: 4rem 0;
}

.faq-contact {
    margin: 4rem 0;
}

.faq-item {
    margin: 2rem 0;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.thanks-section {
    padding: 4rem 0;
}

.centered-content {
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin: 2rem 0;
}

.next-steps {
    margin: 4rem 0;
    text-align: left;
}

.step-item {
    margin: 2rem 0;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.selected-service {
    background-color: var(--bg-light);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 8px;
}

.thanks-cta {
    margin: 4rem 0;
}

.cta-buttons-thanks {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.reassurance {
    background-color: var(--bg-light);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 8px;
}

.contact-reminder {
    margin: 3rem 0;
}

.email-link {
    font-size: 1.2rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.email-link:hover {
    text-decoration: underline;
}

.policy-content {
    line-height: 1.7;
}

.policy-date {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.policy-section {
    margin: 3rem 0;
}

.policy-section strong {
    color: var(--primary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .editorial-content {
        padding: 2rem 1.5rem;
    }

    .hero-text-centered h1 {
        font-size: 2rem;
    }

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

    .narrow-text h2 {
        font-size: 1.6rem;
    }

    .narrow-text h3 {
        font-size: 1.3rem;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cta-buttons-thanks {
        flex-direction: column;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-text-centered h1 {
        font-size: 1.7rem;
    }

    .cta-editorial h3 {
        font-size: 1.3rem;
    }

    .service-text h3 {
        font-size: 1.4rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
