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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-alt: #ecf0f1;
    --border-color: #dde2e6;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 100%;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 5%;
}

.hero-editorial {
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.hero-text-wrapper {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.hero-image-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.story-intro {
    padding: 5rem 5% 3rem;
}

.lead-text {
    font-size: 1.45rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.story-section {
    padding: 4rem 5%;
}

.story-section.alt-bg {
    background-color: var(--bg-light);
}

.story-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.story-section h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.inline-image-wrapper {
    margin: 3rem 0;
}

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

.inline-cta-block {
    padding: 3rem 5%;
    text-align: center;
    background-color: var(--bg-alt);
}

.inline-cta-block p {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cta-link {
    display: inline-block;
    font-size: 1.125rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

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

.trust-markers {
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.trust-item h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.trust-item p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.services-pricing-section {
    padding: 4rem 5%;
    background-color: var(--white);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service-card p {
    font-size: 1.065rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.form-intro {
    margin: 4rem 0 2.5rem;
}

.form-intro h3 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.editorial-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.65rem;
    font-weight: 600;
    font-size: 1.065rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1.15rem;
    font-size: 1.065rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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(--accent-color);
}

.btn-submit {
    padding: 1.15rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonial {
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-left: 3px solid var(--secondary-color);
    padding-left: 2rem;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.final-cta-section {
    padding: 5rem 5%;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.final-cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-large:hover {
    background-color: #c0392b;
}

.page-header {
    padding: 4rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

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

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

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

.feature-list li {
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.7;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.cta-section-inline {
    padding: 4rem 5%;
    background-color: var(--bg-alt);
    text-align: center;
}

.cta-section-inline h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.cta-section-inline p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.25rem;
    font-size: 1.065rem;
    font-weight: 600;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.25rem;
    font-size: 1.065rem;
    font-weight: 600;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.services-detail-section {
    padding: 3rem 5%;
}

.service-detail {
    margin: 4rem 0;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.price-badge {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.service-detail p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail h3 {
    font-size: 1.35rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-list li {
    padding-left: 1.75rem;
    margin-bottom: 0.85rem;
    position: relative;
    font-size: 1.065rem;
    line-height: 1.65;
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.service-note {
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 1.5rem;
}

.pricing-note-section {
    padding: 3rem 5%;
    background-color: var(--bg-light);
}

.pricing-note-section h2 {
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.pricing-note-section p {
    font-size: 1.065rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.form-section {
    padding: 4rem 5%;
}

.form-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-info-section {
    padding: 3rem 5%;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.contact-card {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-card p {
    font-size: 1.065rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

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

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

.visit-section {
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.visit-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.visit-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.thanks-section {
    padding: 6rem 5%;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-section h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.thanks-details p {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.service-selected {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.thanks-info {
    margin: 3rem 0;
    text-align: left;
}

.thanks-info h2 {
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.thanks-info h3 {
    font-size: 1.35rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.thanks-info p {
    font-size: 1.065rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.thanks-list {
    list-style: none;
    margin: 1.5rem 0;
}

.thanks-list li {
    padding-left: 1.75rem;
    margin-bottom: 0.85rem;
    position: relative;
    font-size: 1.065rem;
}

.thanks-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

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

.legal-page {
    background-color: var(--bg-light);
}

.legal-section {
    padding: 3rem 5% 5rem;
}

.legal-section h2 {
    font-size: 1.85rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-section h4 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-section p {
    font-size: 1.065rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.legal-section ul {
    margin: 1.5rem 0;
}

.legal-list {
    list-style: none;
    margin: 1.5rem 0;
}

.legal-list li {
    padding-left: 1.75rem;
    margin-bottom: 0.85rem;
    position: relative;
    font-size: 1.065rem;
    line-height: 1.65;
}

.legal-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.35rem;
    line-height: 1;
}

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

.cookie-table th {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table tbody tr:hover {
    background-color: var(--bg-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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 {
    margin: 0;
    font-size: 1.065rem;
    flex: 1;
    min-width: 280px;
}

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

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

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

.footer-col ul li {
    margin-bottom: 0.65rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

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

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

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

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

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

    .story-section h2 {
        font-size: 1.85rem;
    }

    .service-card {
        padding: 1.75rem;
    }

    .btn-large {
        font-size: 1.065rem;
        padding: 1rem 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

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

    .thanks-section h1 {
        font-size: 2rem;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
}