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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.btn-cookie.accept {
    background-color: #4a90e2;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie.reject:hover {
    background-color: rgba(255,255,255,0.1);
}

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

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

.brand {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #888;
    font-style: italic;
    flex: 1;
    text-align: center;
}

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

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

.nav-links a:hover {
    color: #1a1a1a;
}

.editorial-flow {
    background-color: #fafafa;
    padding: 60px 0 80px;
}

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

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

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

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

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

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

.inline-image.narrow {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

.text-block h2 {
    font-size: 30px;
    line-height: 1.4;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 60px;
}

.text-block h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 16px;
    margin-top: 40px;
}

.text-block h4 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 12px;
    margin-top: 30px;
}

.text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.text-block a {
    color: #4a90e2;
    text-decoration: none;
    border-bottom: 1px solid rgba(74,144,226,0.3);
    transition: border-color 0.3s ease;
}

.text-block a:hover {
    border-bottom-color: #4a90e2;
}

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

.btn-text-cta {
    display: inline-block;
    font-size: 19px;
    color: #4a90e2;
    text-decoration: none;
    padding: 14px 32px;
    border: 2px solid #4a90e2;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-text-cta:hover {
    background-color: #4a90e2;
    color: #ffffff;
}

.testimonial-inline {
    background-color: #f4f7fa;
    padding: 35px 40px;
    margin: 50px 0;
    border-left: 4px solid #4a90e2;
}

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

.testimonial-inline p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 12px;
}

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

.insight-box {
    background-color: #fff8e6;
    border: 1px solid #f0d994;
    padding: 30px 35px;
    margin: 50px 0;
    border-radius: 4px;
}

.insight-box h4 {
    font-size: 19px;
    color: #1a1a1a;
    margin-bottom: 14px;
    font-weight: 700;
}

.insight-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
}

.services-reveal {
    margin-top: 70px;
    margin-bottom: 60px;
}

.services-reveal h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    text-align: center;
}

.services-reveal > p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 32px;
    border-radius: 6px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.service-card.featured {
    border: 2px solid #4a90e2;
    position: relative;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background-color: #4a90e2;
    color: #ffffff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 12px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 14px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 18px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #2a2a2a;
    margin-top: 16px;
}

.form-section {
    margin-top: 70px;
    background-color: #ffffff;
    padding: 45px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.form-section h2 {
    font-size: 30px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 14px 32px;
    font-size: 17px;
    font-weight: 600;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 12px;
}

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

.disclaimer-section {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #d0d0d0;
}

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

.references {
    margin-top: 50px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.references h3 {
    font-size: 19px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.references li {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.references a {
    color: #4a90e2;
    text-decoration: none;
}

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

.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 50px 0 30px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

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

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

.footer-col a:hover {
    color: #ffffff;
}

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

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

.contact-info-block {
    margin: 35px 0;
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 3px solid #4a90e2;
}

.contact-info-block h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
}

.thanks-message {
    background-color: #e8f5e9;
    border: 1px solid #a5d6a7;
    padding: 30px;
    border-radius: 6px;
    margin: 40px 0;
}

.thanks-message p {
    font-size: 17px;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 12px;
}

.thanks-message p:last-child {
    margin-bottom: 0;
}

.thanks-message strong {
    color: #1a1a1a;
    font-weight: 700;
}

.text-block ul {
    margin: 20px 0;
    padding-left: 30px;
}

.text-block li {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.legal-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h1 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 26px;
    line-height: 1.4;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 50px;
    margin-bottom: 18px;
}

.legal-content h3 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    color: #2a2a2a;
    margin-top: 35px;
    margin-bottom: 14px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 18px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.legal-content a {
    color: #4a90e2;
    text-decoration: none;
    border-bottom: 1px solid rgba(74,144,226,0.3);
    transition: border-color 0.3s ease;
}

.legal-content a:hover {
    border-bottom-color: #4a90e2;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .ad-disclosure {
        text-align: center;
    }

    .nav-links {
        gap: 20px;
    }

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

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

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

    .text-block h3 {
        font-size: 21px;
    }

    .text-block p {
        font-size: 17px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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