* {
    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;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    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: 24px;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

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

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

.nav-links a:hover {
    color: #2563eb;
}

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

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

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

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

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

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

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

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

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

.article-section p {
    margin-bottom: 20px;
    font-size: 18px;
    text-align: justify;
}

.lead-paragraph {
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 30px;
}

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

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

.inline-image.left {
    float: left;
    width: 48%;
    margin: 10px 25px 20px 0;
}

.inline-image.right {
    float: right;
    width: 48%;
    margin: 10px 0 20px 25px;
}

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

.cta-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    transition: color 0.3s;
}

.cta-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.dark-bg {
    background-color: #2c2c2c;
    color: #f5f5f5;
    padding: 50px 40px;
    margin-left: -40px;
    margin-right: -40px;
}

.dark-bg h2 {
    color: #ffffff;
}

.principles-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 35px;
}

.principle-card {
    background-color: #3a3a3a;
    padding: 30px;
    border-left: 3px solid #2563eb;
}

.principle-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.principle-card p {
    color: #d4d4d4;
    font-size: 16px;
}

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

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

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

.service-image {
    margin-bottom: 25px;
    background-color: #e8e8e8;
}

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

.service-content h3 {
    font-size: 26px;
    margin-bottom: 18px;
}

.service-content p {
    font-size: 17px;
    margin-bottom: 15px;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #2563eb;
    margin: 25px 0;
    font-family: 'Arial', sans-serif;
}

.select-service-btn {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

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

.select-service-btn.selected {
    background-color: #059669;
}

.testimonial-section {
    background-color: #f8f9fa;
    padding: 50px 40px;
    margin-left: -40px;
    margin-right: -40px;
}

.testimonial {
    margin: 30px 0;
    padding: 30px;
    border-left: 4px solid #2563eb;
    background-color: #ffffff;
}

.testimonial p {
    font-size: 19px;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
}

.editorial-form {
    margin-top: 40px;
    background-color: #f8f9fa;
    padding: 40px;
    margin-left: -40px;
    margin-right: -40px;
}

.form-notice {
    background-color: #fef3c7;
    color: #92400e;
    padding: 15px;
    margin-bottom: 25px;
    border-left: 3px solid #f59e0b;
    font-size: 15px;
    display: none;
}

.form-notice.show {
    display: block;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    font-family: 'Georgia', serif;
}

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

.submit-btn {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

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

.submit-btn:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.main-footer {
    background-color: #1a1a1a;
    color: #d4d4d4;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

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

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

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

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

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

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

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

.footer-section ul li a:hover {
    color: #2563eb;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #2c2c2c;
    font-size: 13px;
    line-height: 1.6;
    color: #a8a8a8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3a3a3a;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px;
    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;
    gap: 30px;
}

.cookie-content p {
    font-size: 14px;
    margin: 0;
    flex: 1;
}

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

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

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

@media (max-width: 768px) {
    .editorial-content {
        padding: 40px 20px;
    }

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

    .subtitle {
        font-size: 18px;
    }

    .inline-image.left,
    .inline-image.right {
        float: none;
        width: 100%;
        margin: 25px 0;
    }

    .dark-bg,
    .editorial-form,
    .testimonial-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 30px 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

    .cookie-buttons {
        flex-direction: column;
    }
}