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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 1000;
    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 {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-accept {
    background-color: #2c5f7c;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1e4a5f;
}

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

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

.header-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f7c;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c5f7c;
}

.editorial-layout {
    min-height: calc(100vh - 200px);
}

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

.hero-image-container {
    width: 100%;
    height: 500px;
    background-color: #e8eef2;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-narrow {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

.hero-content-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.lead-text {
    font-size: 1.25rem;
    color: #5a6c7d;
    line-height: 1.6;
}

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

.content-narrow h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: #1a2332;
}

.content-narrow h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: #2c3e50;
}

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

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

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

.section-alt {
    background-color: #f8f9fa;
}

.inline-image {
    margin: 2.5rem 0;
    background-color: #e8eef2;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2c5f7c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #2c5f7c;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    border: 2px solid #2c5f7c;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #2c5f7c;
    color: #ffffff;
}

blockquote.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f0f5f8;
    border-left: 4px solid #2c5f7c;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

blockquote.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #5a6c7d;
}

.services-editorial {
    padding: 3rem 0;
}

.service-cards-editorial {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 45%;
    background-color: #e8eef2;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-content p {
    margin-bottom: 1rem;
    color: #5a6c7d;
    font-size: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f7c;
    margin-top: auto;
    margin-bottom: 1rem;
}

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

.btn-select-service:hover {
    background-color: #1e4a5f;
}

.form-section-editorial {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f7c;
}

.form-group input[readonly] {
    background-color: #e8eef2;
}

.btn-submit {
    padding: 0.9rem 2.5rem;
    background-color: #2c5f7c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.section-trust {
    background-color: #f8f9fa;
}

.disclaimer-section {
    background-color: #fff8e6;
    border-top: 3px solid #f4c542;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.footer-editorial {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

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

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7fb1d3;
}

.footer-info {
    font-size: 0.9rem;
    color: #b0bec5;
}

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

.contact-info {
    padding-top: 2rem;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c5f7c;
}

.contact-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

.legal-page .content-narrow {
    padding-top: 1rem;
}

.last-updated {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-top: 0.5rem;
}

.thanks-page .thanks-content {
    text-align: left;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 250px;
    }

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

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
}