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

.ad-notice {
    background-color: #f0f4f7;
    color: #5a6c7d;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    border-bottom: 1px solid #d8e1e8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.nav-brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #2a5a7a;
    letter-spacing: -0.5px;
}

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

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

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

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

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

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 4px;
}

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

.hero-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a5a5a;
    font-style: italic;
    line-height: 1.5;
}

.article-content {
    font-size: 18px;
    color: #3a3a3a;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 30px;
    font-weight: 400;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #2a2a2a;
    font-weight: 600;
}

.inline-image-block {
    margin: 45px 0;
    overflow: hidden;
    border-radius: 4px;
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 15px;
    font-style: italic;
    color: #5a5a5a;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.citation {
    color: #2a5a7a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.citation:hover {
    text-decoration: underline;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px 35px;
    background-color: #f7f9fb;
    border-left: 4px solid #2a5a7a;
}

.testimonial-inline blockquote {
    font-size: 19px;
    line-height: 1.7;
    color: #3a3a3a;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    color: #6a6a6a;
    font-style: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2a5a7a;
    color: #ffffff;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

.service-item {
    margin: 50px 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

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

.service-item h2,
.service-item h3 {
    margin-top: 0;
}

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

.select-service-btn {
    padding: 12px 28px;
    background-color: #2a5a7a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #234d66;
}

.form-section {
    margin: 50px 0;
    padding: 35px;
    background-color: #f7f9fb;
    border-radius: 4px;
}

.form-section h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 26px;
}

.contact-form {
    margin-top: 25px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    color: #2a2a2a;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a5a7a;
}

.submit-btn {
    padding: 14px 35px;
    background-color: #2a5a7a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.references-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e5e5e5;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #3a3a3a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.references-list {
    list-style-position: outside;
    padding-left: 25px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.references-list a {
    color: #2a5a7a;
    text-decoration: none;
}

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

.contact-info-block {
    margin: 40px 0;
    padding: 35px;
    background-color: #f7f9fb;
    border-radius: 4px;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-detail p {
    margin-bottom: 8px;
}

.email-text {
    font-family: monospace;
    color: #3a3a3a;
}

.small-note {
    font-size: 14px;
    color: #6a6a6a;
    font-style: italic;
}

.thanks-content {
    text-align: center;
    padding: 60px 30px;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.service-confirmation {
    margin: 25px 0;
    padding: 20px;
    background-color: #e8f4f8;
    border-radius: 4px;
}

.service-selected {
    font-size: 17px;
    color: #2a5a7a;
}

.thanks-info {
    font-size: 17px;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.thanks-next-steps {
    text-align: left;
    max-width: 550px;
    margin: 40px auto;
    padding: 30px;
    background-color: #f7f9fb;
    border-radius: 4px;
}

.thanks-next-steps h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.thanks-actions {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2a5a7a;
    color: #ffffff;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #234d66;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2a5a7a;
    border: 2px solid #2a5a7a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2a5a7a;
    color: #ffffff;
}

.thanks-note {
    margin-top: 40px;
    padding: 25px;
    background-color: #f7f9fb;
    border-radius: 4px;
}

.thanks-note p {
    font-size: 15px;
    color: #5a5a5a;
    margin-bottom: 0;
}

.legal-page .update-date {
    font-size: 14px;
    color: #6a6a6a;
    font-style: italic;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.legal-page .article-content ul,
.legal-page .article-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

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

.legal-page .article-content a {
    color: #2a5a7a;
    text-decoration: none;
}

.legal-page .article-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
}

.cookie-table thead {
    background-color: #f0f4f7;
}

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

.cookie-table th {
    font-weight: 600;
    color: #2a2a2a;
}

.disclaimer-text {
    margin-top: 50px;
    padding: 25px;
    background-color: #fff9e6;
    border-left: 4px solid #f4c430;
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 50px 40px 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #888888;
    margin-bottom: 15px;
    line-height: 1.6;
}

.disclaimer-footer {
    font-size: 12px;
    color: #777777;
    max-width: 800px;
    margin: 15px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2a5a7a;
    padding: 25px 30px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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-size: 14px;
    color: #3a3a3a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-width: 300px;
}

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

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

.cookie-btn.accept {
    background-color: #2a5a7a;
    color: #ffffff;
}

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

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

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

.cookie-link {
    display: inline-block;
    margin-left: 15px;
    font-size: 13px;
    color: #2a5a7a;
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

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

    .nav-links {
        gap: 20px;
    }

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

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .article-content {
        font-size: 17px;
    }

    .article-content h2 {
        font-size: 26px;
    }

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

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

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

    .cookie-table {
        font-size: 13px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px 10px;
    }
}