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

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a5490;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    letter-spacing: -0.5px;
}

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

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

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

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

.hero-editorial {
    padding: 60px 24px 40px;
    background-color: #ffffff;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 400;
}

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

.hero-image {
    max-width: 900px;
    margin: 0 auto;
    background-color: #e8e8e8;
}

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

.text-block {
    padding: 60px 24px;
}

.text-block.alternate-bg {
    background-color: #f7f7f7;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    margin-top: 48px;
    color: #1a1a1a;
    font-weight: 400;
}

.narrow-content h2:first-child {
    margin-top: 0;
}

.narrow-content h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 32px;
    color: #2c2c2c;
    font-weight: 500;
}

.narrow-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #333;
}

.narrow-content ul,
.narrow-content ol {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    margin-left: 28px;
    color: #333;
}

.narrow-content li {
    margin-bottom: 12px;
}

.inline-figure {
    margin: 48px 0;
    background-color: #e8e8e8;
}

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

.editorial-quote {
    font-size: 24px;
    line-height: 1.5;
    font-style: italic;
    padding: 32px 40px;
    margin: 48px 0;
    border-left: 4px solid #1a5490;
    background-color: #f9f9f9;
    color: #2c2c2c;
}

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

.text-link-cta {
    font-size: 18px;
    color: #1a5490;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 500;
    transition: color 0.2s;
}

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

.services-showcase {
    padding: 60px 24px;
    background-color: #fafafa;
}

.service-item-editorial {
    margin: 56px 0;
    padding: 40px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.service-item-editorial h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 500;
}

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

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

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: #1a5490;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.service-select-btn {
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 16px;
}

.service-select-btn:hover {
    background-color: #0d3a6e;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    font-size: 17px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: bold;
}

.testimonial-inline {
    background-color: #f4f7fa;
    padding: 32px;
    margin: 40px 0;
    border-left: 3px solid #1a5490;
}

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

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

.form-section {
    padding: 60px 24px;
    background-color: #f7f7f7;
}

.editorial-form {
    margin-top: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

.submit-btn {
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 16px;
}

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

.page-header-narrow {
    padding: 60px 24px 40px;
    background-color: #f7f7f7;
    text-align: center;
}

.page-header-narrow h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 400;
}

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

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

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

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

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a5490;
}

.thanks-message {
    background-color: #e8f4f8;
    padding: 24px;
    margin: 32px 0;
    border-left: 4px solid #1a5490;
}

.thanks-message p {
    font-size: 18px;
    margin-bottom: 0;
}

.thanks-list {
    text-align: left;
    max-width: 560px;
    margin: 32px auto;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

.legal-content ul,
.legal-content ol {
    margin-left: 32px;
}

.legal-content a {
    color: #1a5490;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0d3a6e;
}

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

.cookies-table thead {
    background-color: #f0f0f0;
}

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

.cookies-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.main-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 60px 24px 24px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #1a5490;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

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

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

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: background-color 0.2s;
}

.cookie-btn.accept {
    background-color: #1a5490;
    color: #ffffff;
}

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

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

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

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

    .nav-links {
        gap: 20px;
    }

    .hero-editorial h1 {
        font-size: 36px;
    }

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

    .narrow-content h2 {
        font-size: 28px;
    }

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

    .editorial-quote {
        font-size: 20px;
        padding: 24px 20px;
    }

    .service-item-editorial {
        padding: 24px;
    }

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

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

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

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