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

body {
    font-family: 'Georgia', 'Merriweather', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fefefe;
}

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

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    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: 24px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: #1a1a1a;
}

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

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

.hero-image-container {
    width: 100%;
    margin-bottom: 30px;
    background-color: #e8e8e8;
}

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

.hero-text-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.subtitle {
    font-size: 22px;
    color: #666;
    font-style: italic;
    font-weight: 400;
}

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

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

.content-narrow h3 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 600;
    color: #2a2a2a;
}

.content-narrow h4 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
    color: #2a2a2a;
}

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

.inline-image-block {
    margin: 50px 0;
    background-color: #f8f8f8;
}

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

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

.citation {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

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

.highlight-section {
    background-color: #f9fafb;
    padding: 40px;
    margin: 50px 0;
    border-left: 4px solid #2563eb;
}

.insight-box {
    margin-bottom: 30px;
}

.insight-box h4 {
    margin-top: 0;
}

.highlight-box {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 25px;
    margin: 40px 0;
}

.highlight-box p {
    margin-bottom: 0;
}

.testimonial-inline {
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f8f8;
    border-left: 5px solid #1a1a1a;
}

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

.testimonial-inline footer {
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-selection-inline {
    margin: 60px 0;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    border: 1px solid #e0e0e0;
    background-color: #fff;
    transition: box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card.selected {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.service-card img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-content {
    padding: 30px;
}

.service-content h4 {
    margin-top: 0;
    font-size: 24px;
}

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

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

.select-service-btn {
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.select-service-btn:hover {
    background-color: #1d4ed8;
}

.service-card.selected .select-service-btn {
    background-color: #10b981;
}

.service-card.selected .select-service-btn:hover {
    background-color: #059669;
}

.form-section-editorial {
    margin: 60px 0;
    padding: 40px;
    background-color: #f9fafb;
    border: 1px solid #e0e0e0;
}

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

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

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

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

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

.submit-btn {
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
    border-radius: 4px;
    font-weight: 600;
}

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

.submit-btn:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.form-note {
    margin-top: 15px;
    font-size: 14px;
    color: #ef4444;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.disclaimer {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 0;
}

.references-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #f8f8f8;
}

.references-section h4 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

.references-list a {
    color: #2563eb;
    text-decoration: none;
}

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

.page-header {
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section-editorial {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: #1e293b;
    color: #fff;
    text-align: center;
}

.cta-section-editorial h3 {
    margin-top: 0;
    color: #fff;
    font-size: 32px;
}

.cta-section-editorial p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-link {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.cta-link:hover {
    background-color: #1d4ed8;
}

.services-detailed {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: #e8e8e8;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    margin-top: 0;
    font-size: 32px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin: 15px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.service-cta {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s;
    border-radius: 4px;
    margin-top: 15px;
}

.service-cta:hover {
    background-color: #1d4ed8;
}

.contact-info-section {
    margin: 40px 0;
}

.contact-block {
    margin-bottom: 50px;
}

.contact-block h3 {
    margin-top: 0;
}

.email-display {
    font-family: 'Courier New', monospace;
    background-color: #f3f4f6;
    padding: 8px 12px;
    display: inline-block;
    font-size: 16px;
    color: #1a1a1a;
}

.note-small {
    font-size: 15px;
    color: #666;
    margin-top: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thanks-page {
    text-align: center;
}

.thanks-content {
    max-width: 650px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #fff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border-radius: 50%;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 22px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-info-box {
    background-color: #f9fafb;
    padding: 30px;
    margin: 40px 0;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.thanks-info-box h3 {
    margin-top: 0;
}

.next-steps-list {
    list-style: none;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.next-steps-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.next-steps-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

#selected-service-display {
    background-color: #eff6ff;
    padding: 15px 20px;
    margin: 25px 0;
    border-left: 4px solid #2563eb;
    text-align: left;
    display: none;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: #e5e7eb;
    color: #1a1a1a;
}

.btn-secondary:hover {
    background-color: #d1d5db;
}

.legal-page .legal-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

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

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

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

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

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

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

.cookies-table th {
    background-color: #f3f4f6;
    font-weight: 600;
}

.main-footer {
    background-color: #1e293b;
    color: #e5e7eb;
    padding: 60px 30px 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #fff;
    padding: 25px 30px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.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 {
    flex: 1;
    margin: 0;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

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

.cookie-btn.accept {
    background-color: #10b981;
    color: #fff;
}

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

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

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

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

    .nav-links {
        gap: 20px;
    }

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

    .subtitle {
        font-size: 18px;
    }

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

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .cookie-btn {
        flex: 1;
    }
}
