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

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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 37px;
    z-index: 99;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #27ae60;
}

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

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 400;
}

.subheading {
    font-size: 20px;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 40px;
}

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

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

.editorial-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.inline-image {
    margin: 50px 0;
    background-color: #f5f5f5;
}

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

.problem-section,
.solution-intro,
.trust-building,
.benefits-reveal,
.product-intro,
.content-section {
    margin: 50px 0;
}

.problem-section h2,
.solution-intro h2,
.trust-building h2,
.benefits-reveal h2,
.product-intro h2,
.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #1a252f;
}

.editorial-list {
    list-style-position: outside;
    margin-left: 25px;
    margin-bottom: 20px;
}

.editorial-list li {
    font-size: 18px;
    margin-bottom: 15px;
}

.insight-block {
    background-color: #f8f9fa;
    padding: 30px;
    margin: 50px 0;
    border-left: 4px solid #27ae60;
}

.insight-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

.insight-block p {
    font-size: 17px;
    line-height: 1.7;
}

.insight-block a {
    color: #27ae60;
    text-decoration: none;
}

.insight-block a:hover {
    text-decoration: underline;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 30px;
    background-color: #ecf9f2;
    border-left: 4px solid #27ae60;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 19px;
    line-height: 1.6;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 16px;
    color: #6c757d;
}

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

.service-item {
    margin-bottom: 60px;
    background-color: #fefefe;
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-item img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    object-fit: cover;
    background-color: #f5f5f5;
}

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

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

.cta-inline {
    background-color: #27ae60;
    color: #fff;
    padding: 14px 30px;
    font-size: 17px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
}

.cta-inline:hover {
    background-color: #229954;
}

.cta-inline-link {
    color: #27ae60;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    border-bottom: 2px solid #27ae60;
    transition: color 0.3s;
}

.cta-inline-link:hover {
    color: #229954;
}

.cta-section-editorial {
    text-align: center;
    margin: 60px 0;
}

.cta-section-editorial h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.text-link-cta {
    color: #27ae60;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 2px solid #27ae60;
    transition: color 0.3s;
}

.text-link-cta:hover {
    color: #229954;
}

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

.form-message {
    padding: 15px;
    margin-bottom: 20px;
    display: none;
}

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

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ced4da;
    background-color: #fff;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #27ae60;
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.disclaimer-section {
    margin: 60px 0 40px;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 3px solid #6c757d;
}

.disclaimer-section p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

.references-section {
    margin: 40px 0;
    padding: 25px;
    background-color: #f8f9fa;
}

.references-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.references-section ol li {
    font-size: 14px;
    margin-bottom: 10px;
}

.references-section a {
    color: #27ae60;
    text-decoration: none;
}

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

.page-header {
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a252f;
}

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

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

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.6;
}

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

.thanks-details {
    margin: 30px 0;
    padding: 25px;
    background-color: #ecf9f2;
    border-left: 4px solid #27ae60;
}

.thanks-details p {
    font-size: 17px;
    margin-bottom: 10px;
}

.legal-page {
    max-width: 900px;
}

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

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.legal-section h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #2c3e50;
}

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

.legal-list {
    list-style-position: outside;
    margin-left: 25px;
    margin-bottom: 20px;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
}

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

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

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 40px 20px;
    margin-top: 80px;
}

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

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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: 15px;
    line-height: 1.6;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

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

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

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

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

    .subheading {
        font-size: 18px;
    }

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

    .editorial-content p {
        font-size: 17px;
    }

    .problem-section h2,
    .solution-intro h2,
    .trust-building h2,
    .benefits-reveal h2,
    .product-intro h2 {
        font-size: 26px;
    }

    .form-editorial {
        padding: 25px;
    }

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

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

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