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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-color: #2d3436;
    --text-light: #636e72;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e1e8ed;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    background-color: var(--highlight-color);
    color: #ffffff;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background-color: #d63851;
    transform: translateY(-2px);
}

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

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

.header-editorial {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

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

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

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.editorial-article {
    background-color: var(--bg-color);
}

.hero-editorial {
    position: relative;
    margin-bottom: 3rem;
    background-color: var(--bg-light);
}

.hero-editorial img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9), transparent);
    padding: 3rem 2rem;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-overlay .lead {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

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

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

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

.intro-text {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

.content-narrow h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.content-narrow h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

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

.content-narrow ul,
.content-narrow ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.inline-image-section {
    margin: 3rem 0;
    background-color: var(--bg-light);
}

.inline-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.quote-block {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--highlight-color);
    font-style: italic;
}

.quote-block p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.list-styled {
    margin: 2.5rem 0;
}

.list-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.list-item h3 {
    margin-top: 0;
    color: var(--accent-color);
}

.services-cards-editorial {
    margin: 3rem 0;
}

.service-card {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.8rem 2rem;
    background-color: var(--highlight-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #d63851;
    transform: translateY(-2px);
}

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

.btn-text-link {
    color: var(--highlight-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-text-link:hover {
    color: #d63851;
    text-decoration: underline;
}

.form-section-editorial {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.form-section-editorial.hidden {
    display: none;
}

.form-section-editorial h2 {
    margin-top: 0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--highlight-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d63851;
    transform: translateY(-2px);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--highlight-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d63851;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: #ffffff;
}

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

.testimonial {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
}

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

.disclaimer-section {
    margin: 4rem 0 2rem;
    padding: 2rem;
    background-color: #fff9e6;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 0;
}

.services-detailed {
    margin: 3rem 0;
}

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

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

.service-image {
    margin-bottom: 2rem;
    background-color: var(--bg-light);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

.service-info h2 {
    margin-top: 0;
}

.service-info ul {
    margin-bottom: 2rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: bold;
    color: var(--highlight-color);
    margin: 2rem 0;
}

.contact-info-section {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-block h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

.contact-block p {
    line-height: 1.8;
}

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

.contact-text-section {
    margin-top: 3rem;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.faq-item p {
    margin-bottom: 0;
}

.thanks-page-content {
    text-align: center;
    padding: 3rem 0;
}

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

.thanks-message {
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
}

.thanks-message h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--highlight-color);
    border-radius: 4px;
}

.service-confirmation.hidden {
    display: none;
}

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

.thanks-next-steps {
    margin: 4rem 0;
}

.next-steps-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.next-step-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.next-step-card h3 {
    margin-top: 0;
    color: var(--accent-color);
}

.legal-content {
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
}

.legal-content h3 {
    font-size: 1.4rem;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

.approach-list,
.values-section {
    margin: 2rem 0;
}

.value-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.value-item h3 {
    margin-top: 0;
    color: var(--accent-color);
}

.value-item p {
    margin-bottom: 0;
}

.footer-editorial {
    background-color: var(--primary-color);
    color: #ffffff;
    margin-top: 5rem;
}

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

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

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

.footer-column p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
    text-decoration: underline;
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

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

    .nav-links {
        gap: 1rem;
    }

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

    .hero-overlay .lead {
        font-size: 1rem;
    }

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

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

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

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

    .btn-cookie {
        width: 100%;
    }

    .next-steps-grid {
        flex-direction: column;
    }

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