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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1000px;
    width: 100%;
    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: 14px;
    line-height: 1.5;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: white;
}

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

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: white;
}

.cookie-btn.reject:hover {
    background-color: #6c7a7b;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

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

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

.article-header h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

.article-image {
    margin: 50px 0;
    background-color: #e8e8e8;
}

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

.article-section {
    margin: 40px 0;
}

.article-section h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.article-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.article-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.article-section ul li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.text-link {
    font-size: 20px;
    color: #3498db;
    text-decoration: none;
    border-bottom: 2px solid #3498db;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.text-link:hover {
    color: #2980b9;
    border-color: #2980b9;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.testimonial-inline blockquote {
    font-style: italic;
}

.testimonial-inline p {
    font-size: 20px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

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

.service-item {
    margin: 40px 0;
    padding: 40px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.service-item h2,
.service-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.service-select {
    padding: 14px 30px;
    background-color: #3498db;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: #2980b9;
}

.form-section {
    margin: 60px 0;
    padding: 50px;
    background-color: #f8f9fa;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-section > p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.editorial-form {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.submit-btn {
    padding: 16px 40px;
    background-color: #27ae60;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.disclaimer-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #fff8e1;
    border-left: 4px solid #f39c12;
}

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

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

.contact-detail h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 18px;
    line-height: 1.8;
}

.legal-page .article-section {
    margin: 30px 0;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 30px 20px;
    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: 200px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

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

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

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

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

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

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

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

    .article-header h1 {
        font-size: 32px;
    }

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

    .article-section h2 {
        font-size: 26px;
    }

    .article-section p {
        font-size: 17px;
    }

    .service-item {
        padding: 25px;
    }

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

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

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

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