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

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.minimal-nav {
    background-color: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

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

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

.editorial-hero h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-lead {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

.inline-image, .inline-image-small {
    margin: 50px 0;
    background-color: #e9ecef;
}

.inline-image img, .inline-image-small img {
    width: 100%;
    height: auto;
    display: block;
}

.inline-image-small {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.text-block {
    margin-bottom: 40px;
}

.text-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 50px;
    color: #1a1a1a;
    font-weight: 600;
}

.text-block p {
    margin-bottom: 18px;
    font-size: 18px;
}

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

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

.insight-box {
    background-color: #e8f4f8;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #3498db;
}

.insight-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.service-inline, .service-inline-alt {
    background-color: #ffffff;
    padding: 35px;
    margin: 50px 0;
    border: 1px solid #ddd;
}

.service-inline-alt {
    background-color: #f8f9fa;
}

.service-inline h4, .service-inline-alt h4 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-inline p, .service-inline-alt p {
    font-size: 17px;
    margin-bottom: 12px;
}

.price-tag {
    font-size: 22px;
    font-weight: 600;
    color: #27ae60;
    margin: 16px 0;
}

.cta-inline {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 12px;
}

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

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 60px 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 0;
    background-color: #fafafa;
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card h3 {
    font-size: 26px;
    margin: 24px 24px 16px 24px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 17px;
    margin: 0 24px 12px 24px;
    line-height: 1.6;
}

.price-indicator {
    font-size: 20px;
    font-weight: 600;
    color: #27ae60;
    margin: 16px 24px;
}

.cta-card {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 14px 0;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 12px;
}

.cta-card:hover {
    background-color: #1a252f;
}

.testimonial-block {
    margin: 50px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #95a5a6;
}

.testimonial-block blockquote {
    font-style: italic;
    font-size: 19px;
}

.testimonial-block cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    color: #7f8c8d;
    font-size: 16px;
}

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

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

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

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

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

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

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

.submit-button {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 16px;
}

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

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

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

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

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.references-section ol {
    padding-left: 24px;
}

.references-section li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.references-section a {
    color: #3498db;
    text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    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: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 20px;
    flex-wrap: wrap;
}

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

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

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

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

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

.cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

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

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

    .text-block h2 {
        font-size: 26px;
    }

    .minimal-nav {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
    }

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

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