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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #1a1a1a;
    background-color: #fafafa;
}

.ad-notice {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
}

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

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

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

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

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

.article-header h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
}

.article-intro {
    font-size: 22px;
    color: #555;
    font-style: italic;
}

.hero-image {
    margin: 60px -80px;
    background-color: #e8e8e8;
}

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

.content-block {
    margin-bottom: 60px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 30px;
    color: #2a2a2a;
}

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

.content-block h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}

.content-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.inline-cta {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f8f8;
    border-left: 4px solid #1a1a1a;
}

.inline-cta.centered {
    text-align: center;
    border-left: none;
    border-top: 4px solid #1a1a1a;
}

.cta-link {
    font-size: 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #1a1a1a;
    transition: opacity 0.3s;
}

.cta-link:hover {
    opacity: 0.7;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.split-content {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    align-items: flex-start;
}

.text-column {
    flex: 1;
}

.image-column {
    flex: 1;
    background-color: #e8e8e8;
}

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

.highlight-section {
    background-color: #f5f5f5;
    padding: 50px 40px;
    margin: 60px -40px;
}

.numbered-list {
    margin-top: 40px;
}

.list-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.list-item .number {
    font-size: 48px;
    font-weight: bold;
    color: #ccc;
    flex-shrink: 0;
    line-height: 1;
}

.item-content h3 {
    margin-top: 0;
}

.citation {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #1a1a1a;
    transition: opacity 0.3s;
}

.citation:hover {
    opacity: 0.6;
}

.full-width-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 60px 0;
    background-color: #e8e8e8;
    object-fit: cover;
}

.inline-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    background-color: #e8e8e8;
    object-fit: cover;
}

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

.service-card {
    padding: 30px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 15px;
}

.text-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #1a1a1a;
    transition: opacity 0.3s;
}

.text-link:hover {
    opacity: 0.7;
}

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

.testimonial {
    border-left: 4px solid #1a1a1a;
    padding-left: 40px;
    font-style: italic;
}

.testimonial p {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.data-insight {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.data-insight img {
    width: 100%;
    height: auto;
    background-color: #e8e8e8;
    object-fit: cover;
}

.insight-text {
    padding: 30px;
    background-color: #f8f8f8;
}

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

.editorial-form h3 {
    margin-bottom: 30px;
    font-size: 26px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
}

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

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background-color: #1a1a1a;
    color: #fff;
    padding: 18px 40px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.references {
    margin: 60px 0;
    padding: 30px;
    background-color: #f8f8f8;
    border-top: 2px solid #e0e0e0;
}

.references h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

.references a {
    color: #1a1a1a;
    text-decoration: underline;
}

.disclaimer {
    margin: 60px 0;
    padding: 30px;
    background-color: #fff3cd;
    border-left: 4px solid #856404;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px 30px;
    margin-top: 100px;
}

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

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-btn.accept {
    background-color: #4CAF50;
    color: #fff;
}

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

.cta-section {
    background-color: #f5f5f5;
    padding: 50px 40px;
    margin: 80px -40px;
}

.price-table {
    margin: 40px 0;
}

.price-item {
    padding: 30px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.price-info p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.price-value {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
}

.contact-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-info {
    background-color: #f5f5f5;
    padding: 40px;
    margin: 40px 0;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 16px;
    color: #444;
    margin: 0;
}

.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

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

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

.thanks-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 42px;
    margin-bottom: 25px;
}

.thanks-page p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.thanks-actions {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.thanks-actions a {
    display: inline-block;
    padding: 15px 35px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.thanks-actions a:hover {
    background-color: #333;
}

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

    .hero-image {
        margin-left: -20px;
        margin-right: -20px;
    }

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

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

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

    .highlight-section,
    .editorial-form,
    .cta-section {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .list-item {
        flex-direction: column;
        gap: 10px;
    }

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

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

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}