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

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

.ad-notice {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    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: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #444;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s;
}

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

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

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

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

.article-meta {
    font-size: 18px;
    color: #666;
    font-style: italic;
    font-family: Georgia, serif;
}

.article-body {
    font-size: 19px;
    line-height: 1.75;
}

.lead-text {
    font-size: 22px;
    line-height: 1.65;
    color: #333;
    margin-bottom: 35px;
    font-weight: 400;
}

.article-body h2 {
    font-size: 32px;
    line-height: 1.35;
    font-weight: 700;
    color: #1a1a1a;
    margin: 50px 0 25px;
    letter-spacing: -0.5px;
}

.article-body h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: #2a2a2a;
    margin: 35px 0 18px;
}

.article-body p {
    margin-bottom: 25px;
    color: #2c2c2c;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
    display: block;
    background-color: #e8e8e8;
    min-height: 300px;
}

.insight-quote {
    font-size: 24px;
    line-height: 1.55;
    font-style: italic;
    color: #3a3a3a;
    margin: 45px 0;
    padding: 30px 40px;
    border-left: 4px solid #1a1a1a;
    background-color: #f9f9f9;
}

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

.cta-link {
    color: #1a5a9e;
    text-decoration: underline;
    font-size: 19px;
    font-weight: 500;
    transition: color 0.3s;
}

.cta-link:hover {
    color: #0d3d6b;
}

.stats-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
    padding: 35px;
    background-color: #f7f7f7;
    border-radius: 6px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.stat-label {
    font-size: 17px;
    color: #555;
    line-height: 1.5;
}

.cta-section {
    margin: 50px 0;
    padding: 40px;
    background-color: #fafafa;
    border-radius: 6px;
    text-align: center;
}

.cta-section h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #333;
}

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

.service-item {
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e5e5e5;
}

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

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

.service-item p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.price {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #1a5a9e;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-top: 10px;
}

.service-item-detailed {
    margin-bottom: 50px;
    padding: 35px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.service-item-detailed h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.service-details {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item ul {
    margin-left: 20px;
    margin-top: 12px;
}

.detail-item li {
    margin-bottom: 8px;
    color: #444;
}

.price-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
    background-color: #fff;
    border-radius: 4px;
    border: 2px solid #1a1a1a;
}

.price-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-value {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.testimonial-section {
    margin: 45px 0;
}

.testimonial {
    margin-bottom: 35px;
    padding: 30px;
    background-color: #f7f7f7;
    border-left: 4px solid #1a1a1a;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.65;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-form {
    margin: 40px 0;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s;
}

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

.submit-button {
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #fef9e7;
    border-left: 4px solid #d4a017;
    border-radius: 4px;
}

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

.contact-info-section {
    margin: 45px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 25px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.email-display {
    font-family: 'Courier New', monospace;
    background-color: #f5f5f5;
    padding: 8px 12px;
    display: inline-block;
    border-radius: 3px;
}

.info-list {
    margin: 20px 0 20px 30px;
}

.info-list li {
    margin-bottom: 12px;
    line-height: 1.65;
    color: #444;
}

.faq-section {
    margin: 35px 0;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
}

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

.faq-item h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 17px;
    color: #555;
}

.thanks-section {
    text-align: center;
    padding: 50px 0;
}

.thanks-message {
    margin: 40px 0;
    text-align: left;
}

.service-confirmation {
    font-weight: 600;
    color: #1a5a9e;
    margin-top: 20px;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps ul {
    margin: 20px 0 0 30px;
}

.next-steps li {
    margin-bottom: 12px;
    line-height: 1.65;
}

.legal-page .article-body h2 {
    font-size: 26px;
    margin-top: 40px;
}

.legal-page .article-body h3 {
    font-size: 20px;
    margin-top: 25px;
}

.legal-page .article-body ul {
    margin: 15px 0 20px 30px;
}

.legal-page .article-body li {
    margin-bottom: 10px;
}

.legal-page .article-body p {
    font-size: 17px;
}

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

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

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookies-table td {
    color: #444;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 50px 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.footer-section h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

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

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

.cookie-btn.accept {
    background-color: #1a5a9e;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #0d3d6b;
}

.cookie-btn.reject {
    background-color: #555;
    color: #fff;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

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

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

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

    .article-meta {
        font-size: 16px;
    }

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

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

    .article-body h2 {
        font-size: 26px;
        margin-top: 35px;
    }

    .insight-quote {
        font-size: 20px;
        padding: 25px 20px;
    }

    .stats-section {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 32px;
    }

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

    .service-item-detailed {
        padding: 25px 20px;
    }

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

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

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}