* {
    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;
}

.ad-disclosure {
    background-color: #f39c12;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-family: Arial, sans-serif;
}

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

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

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

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

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

.nav-menu a:hover {
    color: #2c3e50;
}

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

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

.header-image {
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
}

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

.article-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.subtitle {
    font-size: 20px;
    color: #666;
    font-style: italic;
}

.article-body {
    font-size: 18px;
}

.content-section {
    margin-bottom: 45px;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #34495e;
}

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

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    margin-top: 50px;
    font-weight: 600;
}

.inline-image {
    margin: 40px 0;
    overflow: hidden;
}

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

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

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

.cta-inline {
    background-color: #ecf0f1;
    padding: 35px;
    margin: 50px 0;
    text-align: center;
    border-left: 4px solid #3498db;
}

.cta-inline p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.services-preview {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 2px solid #e1e4e8;
    border-bottom: 2px solid #e1e4e8;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border: 1px solid #e1e4e8;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.service-card .price {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select {
    background-color: #2c3e50;
    color: #fff;
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #34495e;
}

.btn-select.selected {
    background-color: #27ae60;
}

.contact-form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #e1e4e8;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.editorial-form {
    max-width: 500px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: Georgia, serif;
}

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

.editorial-form .btn-primary {
    width: 100%;
    margin-top: 10px;
}

.references-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 3px solid #95a5a6;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.references-list a {
    color: #2980b9;
    text-decoration: none;
}

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

.disclaimer-section {
    margin: 40px 0;
    padding: 25px;
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
}

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

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

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

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

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

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

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

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

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

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

.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;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.9;
}

.page-header {
    background-color: #34495e;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 38px;
    max-width: 800px;
    margin: 0 auto;
}

.page-content {
    max-width: 720px;
    margin: 50px auto;
    padding: 0 20px 80px;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content p {
    margin-bottom: 20px;
    font-size: 17px;
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.contact-info {
    background-color: #fff;
    padding: 40px;
    border: 1px solid #e1e4e8;
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info strong {
    color: #2c3e50;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.service-item {
    background-color: #fff;
    padding: 35px;
    border-left: 4px solid #3498db;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
}

.service-item .price {
    font-size: 26px;
    font-weight: bold;
    color: #27ae60;
    margin-top: 20px;
}

.about-image {
    margin: 40px 0;
    background-color: #34495e;
}

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

.thanks-message {
    text-align: center;
    padding: 60px 20px;
}

.thanks-message h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-message p {
    font-size: 18px;
    margin-bottom: 15px;
}

.thanks-message .btn-primary {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 32px;
    }

    .lead-paragraph {
        font-size: 19px;
    }

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

    .nav-menu {
        gap: 15px;
    }

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

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