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

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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
    font-family: Arial, sans-serif;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: Arial, sans-serif;
}

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

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-size: 15px;
    font-family: Arial, sans-serif;
    transition: color 0.3s ease;
}

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

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

.article-hero {
    margin-bottom: 50px;
}

.hero-image-container {
    width: 100%;
    margin: 40px 0 30px;
    background-color: #e8e8e8;
    overflow: hidden;
    border-radius: 4px;
}

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

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #6c757d;
    line-height: 1.5;
    font-style: italic;
}

.content-flow {
    font-size: 18px;
    line-height: 1.8;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 30px;
    font-style: italic;
}

.content-flow h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 50px 0 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.content-flow h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 35px 0 18px;
    color: #2c3e50;
    font-weight: 600;
}

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

.content-flow ul,
.content-flow ol {
    margin: 25px 0 25px 30px;
}

.content-flow li {
    margin-bottom: 12px;
}

.inline-image-section {
    margin: 45px 0;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
}

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

.image-caption {
    margin-top: 15px;
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

.cta-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #f0f4f8;
    border-left: 4px solid #2c5282;
    text-align: center;
}

.cta-inline p {
    margin-bottom: 20px;
    font-size: 18px;
}

.cta-link-editorial {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5282;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-family: Arial, sans-serif;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.cta-link-editorial:hover {
    background-color: #1e3a5f;
}

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

.service-card-editorial {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 25px;
    border-radius: 3px;
    background-color: #e8e8e8;
}

.service-card-editorial h2,
.service-card-editorial h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.service-card-editorial p {
    margin-bottom: 18px;
    font-size: 17px;
}

.service-features {
    margin: 20px 0 20px 25px;
    list-style: disc;
}

.service-features li {
    margin-bottom: 10px;
    font-size: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: #2c5282;
    margin: 25px 0 20px;
}

.service-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #ffffff;
    color: #2c5282;
    text-decoration: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    border: 2px solid #2c5282;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: #2c5282;
    color: #ffffff;
}

.testimonial-section {
    margin: 45px 0;
    padding: 35px;
    background-color: #f8f9fa;
    border-left: 5px solid #6c757d;
}

.testimonial-quote {
    font-style: italic;
}

.testimonial-quote p {
    font-size: 19px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 15px;
}

.testimonial-quote cite {
    font-style: normal;
    font-size: 16px;
    color: #6c757d;
    font-weight: 600;
}

.form-section {
    margin: 50px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-family: Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    border-radius: 3px;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.submit-button {
    padding: 14px 40px;
    background-color: #2c5282;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-family: Arial, sans-serif;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1e3a5f;
}

.disclaimer-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 3px;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.6;
    color: #856404;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.contact-card {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #2c5282;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-card p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
}

.thanks-content {
    padding-top: 60px;
}

.thanks-hero {
    text-align: center;
    margin-bottom: 50px;
}

.thanks-hero h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.thanks-list {
    margin: 25px 0 25px 30px;
    list-style: disc;
}

.thanks-list li {
    margin-bottom: 12px;
    font-size: 17px;
}

.service-reference {
    margin: 30px 0;
    padding: 25px;
    background-color: #e7f3ff;
    border-left: 4px solid #2c5282;
    border-radius: 3px;
}

.service-reference p {
    font-size: 17px;
    font-weight: 600;
    color: #2c5282;
}

.legal-page .legal-header {
    padding: 50px 0 30px;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 40px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-date {
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
}

.legal-page h2 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 21px;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 17px;
    margin-bottom: 18px;
}

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

.legal-page li {
    margin-bottom: 10px;
    font-size: 17px;
}

.cookies-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e8e8e8;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    background-color: #ffffff;
}

.editorial-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 40px 30px;
    font-family: Arial, sans-serif;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 30px;
    z-index: 1000;
    display: none;
    font-family: Arial, sans-serif;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: #a0c4ff;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

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

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

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #5a6268;
}

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

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .content-flow {
        font-size: 17px;
    }

    .lead-text {
        font-size: 20px;
    }

    .content-flow h2 {
        font-size: 26px;
    }

    .content-flow h3 {
        font-size: 21px;
    }

    .service-card-editorial h2,
    .service-card-editorial h3 {
        font-size: 24px;
    }

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

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

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

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

    .cookies-table {
        font-size: 14px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 8px;
    }
}
