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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f4f4f4;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.8rem;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.nav-minimal {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

.hero-editorial {
    text-align: left;
    margin-bottom: 50px;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 300;
    line-height: 1.5;
}

.editorial-image {
    margin: 50px 0;
    background-color: #e5e5e5;
}

.editorial-image img {
    width: 100%;
    height: auto;
    display: block;
}

.editorial-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.65;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.editorial-content p {
    margin-bottom: 25px;
}

.editorial-content h2 {
    font-size: 2rem;
    margin-top: 55px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.editorial-content h3 {
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2a2a2a;
    font-weight: 600;
}

.editorial-content h4 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #3a3a3a;
    font-weight: 600;
}

.inline-image-small {
    margin: 35px 0;
    background-color: #e5e5e5;
}

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

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

.btn-text-link {
    color: #2a5f8f;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 2px solid #2a5f8f;
    padding-bottom: 3px;
    transition: color 0.3s, border-color 0.3s;
}

.btn-text-link:hover {
    color: #1a4060;
    border-color: #1a4060;
}

.services-editorial {
    margin: 40px 0;
}

.service-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-item h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.service-item p {
    margin-bottom: 15px;
    color: #4a4a4a;
}

.price {
    display: inline-block;
    font-size: 1.4rem;
    color: #2a5f8f;
    font-weight: 600;
    margin-top: 10px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.service-item-detailed {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-image {
    margin: 0 0 20px 0;
    background-color: #e5e5e5;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.price-large {
    display: inline-block;
    font-size: 1.6rem;
    color: #2a5f8f;
    font-weight: 600;
    margin-top: 15px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.form-section {
    margin: 50px 0;
    padding: 40px;
    background-color: #f8f8f8;
    border-left: 4px solid #2a5f8f;
}

.form-section h3 {
    margin-top: 0;
    margin-bottom: 25px;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #3a3a3a;
    font-weight: 600;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    background-color: #fff;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 14px 30px;
    font-size: 1.05rem;
    background-color: #2a5f8f;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.disclaimer-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #f0f0f0;
    border-left: 3px solid #999;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.references-section {
    margin: 40px 0;
    padding: 30px;
    background-color: #fafafa;
    border-top: 1px solid #e0e0e0;
}

.references-section h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.references-section ol {
    margin-left: 20px;
}

.references-section li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.references-section a {
    color: #2a5f8f;
    text-decoration: none;
}

.references-section a:hover {
    text-decoration: underline;
}

.citation {
    color: #2a5f8f;
    text-decoration: none;
    font-size: 0.9em;
    vertical-align: super;
}

.citation:hover {
    text-decoration: underline;
}

.contact-details {
    margin: 40px 0;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.contact-block p {
    margin-bottom: 10px;
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
}

.thanks-content {
    padding: 40px 0;
}

.thanks-message {
    margin: 40px 0;
    padding: 35px;
    background-color: #f0f8f0;
    border-left: 4px solid #5a9e5a;
}

.thanks-list {
    margin: 20px 0 20px 30px;
}

.thanks-list li {
    margin-bottom: 10px;
}

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

.legal-intro {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
}

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

.legal-content a {
    color: #2a5f8f;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0b0;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px 30px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

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

.btn-cookie {
    padding: 10px 25px;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-cookie.accept {
    background-color: #2a5f8f;
    color: #fff;
}

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

.btn-cookie.reject {
    background-color: #666;
    color: #fff;
}

.btn-cookie.reject:hover {
    background-color: #4a4a4a;
}

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

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

    .editorial-content {
        font-size: 1.05rem;
    }

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

    .editorial-content h2 {
        font-size: 1.7rem;
    }

    .form-section {
        padding: 25px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }
}