* {
    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;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    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);
}

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.main-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    color: #2a2a2a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4a90e2;
}

.ad-label {
    font-size: 12px;
    color: #666;
    font-family: 'Arial', sans-serif;
    padding: 4px 10px;
    background-color: #f0f0f0;
    border-radius: 3px;
}

.editorial-layout {
    background-color: #ffffff;
}

.editorial-content {
    padding: 60px 0;
}

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

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

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.inline-image-wrapper {
    margin: 40px 0;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

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

.story-section,
.insight-section,
.services-preview,
.trust-section,
.form-section,
.final-cta {
    margin-bottom: 60px;
}

.story-section h2,
.insight-section h2,
.services-preview h2,
.trust-section h2,
.form-section h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-section p,
.insight-section p,
.services-preview > p,
.trust-section > p,
.form-section > p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

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

.cta-link {
    display: inline-block;
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #234a87;
}

.cta-link-secondary {
    display: inline-block;
    color: #2c5aa0;
    text-decoration: underline;
    font-size: 18px;
    transition: color 0.3s ease;
}

.cta-link-secondary:hover {
    color: #234a87;
}

.margin-top {
    margin-top: 50px;
}

.insight-card {
    background-color: #f9f9f9;
    padding: 30px;
    margin-bottom: 24px;
    border-left: 4px solid #4a90e2;
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.insight-card p {
    font-size: 17px;
    color: #3a3a3a;
}

.service-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-item h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-item p {
    font-size: 17px;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.service-item .price {
    font-size: 19px;
    color: #2c5aa0;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.testimonial-inline {
    background-color: #f5f7fa;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.testimonial-inline p {
    font-size: 19px;
    font-style: italic;
    color: #2a2a2a;
    margin-bottom: 12px;
}

.testimonial-source {
    display: block;
    font-size: 15px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.editorial-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 4px;
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2a2a;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
}

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

.btn-submit {
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-cta {
    text-align: center;
    padding: 40px 0;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    background-color: #252525;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #aaaaaa;
    font-family: 'Arial', sans-serif;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
    font-family: 'Arial', sans-serif;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 19px;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.thanks-content .selected-service {
    font-weight: 700;
    color: #2c5aa0;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    color: #2c5aa0;
    text-decoration: underline;
    font-size: 17px;
}

.contact-page-content {
    padding: 80px 0;
}

.contact-page-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-info-block {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.contact-info-item {
    margin-bottom: 24px;
}

.contact-info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.contact-info-item p {
    font-size: 16px;
    color: #3a3a3a;
    font-family: 'Arial', sans-serif;
}

.about-page-content {
    padding: 80px 0;
}

.about-page-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-page-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.services-page-content {
    padding: 80px 0;
}

.services-page-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-page-content {
    padding: 80px 0;
}

.legal-page-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-page-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2a2a2a;
}

.legal-page-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #3a3a3a;
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
}

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

.legal-page-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #3a3a3a;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

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

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

    .story-section h2,
    .insight-section h2,
    .services-preview h2,
    .trust-section h2,
    .form-section h2 {
        font-size: 26px;
    }

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

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

    .main-nav {
        flex-direction: column;
        gap: 12px;
    }
}