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

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

.ad-disclosure {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    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: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

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

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

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

.article-image-wrapper {
    margin-bottom: 40px;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.article-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.content-section {
    margin-bottom: 50px;
}

.narrow-column {
    max-width: 100%;
}

.narrow-column p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.narrow-column h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 600;
}

.narrow-column h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

.narrow-column ul {
    margin-left: 30px;
    margin-bottom: 24px;
}

.narrow-column ul li {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.inline-image-section {
    margin-bottom: 50px;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    background-color: #f5f5f5;
    object-fit: cover;
}

.image-caption {
    font-size: 15px;
    color: #777;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
}

.alternate-bg {
    background-color: #f9f9f9;
    padding: 50px 30px;
    margin-left: -30px;
    margin-right: -30px;
}

.inline-cta {
    margin-top: 35px;
    margin-bottom: 20px;
}

.text-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: #004499;
    border-bottom-color: #004499;
}

.testimonial-inline {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.testimonial-inline blockquote {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    color: #333;
    margin: 0;
}

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

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

.service-card-editorial {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-card-editorial h2,
.service-card-editorial h3 {
    font-size: 28px;
    margin-bottom: 15px;
    margin-top: 0;
    color: #1a1a1a;
}

.service-card-editorial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-card-editorial img {
    width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    object-fit: cover;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: #0066cc;
    margin-top: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.form-section {
    margin-top: 70px;
    margin-bottom: 60px;
    padding: 50px 40px;
    background-color: #f7f7f7;
    margin-left: -30px;
    margin-right: -30px;
}

.editorial-form {
    margin-top: 35px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: #0066cc;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 3px solid #ccc;
    margin-top: 50px;
}

.thanks-section {
    text-align: center;
    padding: 80px 20px;
}

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

.thanks-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.thanks-section img {
    margin-top: 40px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 600px;
    background-color: #f5f5f5;
    object-fit: cover;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.site-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 50px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    font-size: 13px;
    color: #999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 25px 30px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    flex: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #0066cc;
    color: #fff;
}

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

.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: 20px;
    }

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

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

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

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

    .narrow-column p {
        font-size: 17px;
    }

    .narrow-column h2 {
        font-size: 26px;
        margin-top: 35px;
    }

    .narrow-column h3 {
        font-size: 22px;
    }

    .alternate-bg {
        margin-left: -20px;
        margin-right: -20px;
        padding: 40px 20px;
    }

    .form-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 40px 20px;
    }

    .testimonial-inline blockquote {
        font-size: 19px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .thanks-actions {
        width: 100%;
    }

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