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

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

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

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

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

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

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

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

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

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

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

.hero-image-container {
    width: 100%;
    margin-bottom: 32px;
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

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

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

.article-intro {
    font-size: 21px;
    line-height: 1.5;
    color: #555;
    font-style: italic;
}

.article-body {
    font-size: 19px;
    line-height: 1.75;
}

.text-section {
    margin-bottom: 48px;
}

.text-section h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 600;
    color: #1a1a1a;
}

.text-section h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 32px;
    font-weight: 600;
    color: #2a2a2a;
}

.text-section p {
    margin-bottom: 24px;
}

.editorial-list {
    margin: 24px 0 24px 32px;
    list-style-type: disc;
}

.editorial-list li {
    margin-bottom: 12px;
    padding-left: 8px;
}

.inline-image-block {
    margin: 52px 0;
    background-color: #ececec;
    border-radius: 4px;
    overflow: hidden;
}

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

.image-caption {
    padding: 16px 20px;
    font-size: 16px;
    font-style: italic;
    color: #666;
    background-color: #f5f5f5;
}

.highlighted-section {
    background-color: #f9f9f9;
    padding: 32px;
    border-left: 4px solid #3a3a3a;
    margin: 48px 0;
}

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

.cta-link {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    color: #1a1a1a;
    text-decoration: none;
    padding: 14px 32px;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

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

.testimonial-inline {
    margin: 52px 0;
    padding: 32px 40px;
    background-color: #f5f5f5;
    border-left: 4px solid #3a3a3a;
}

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

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

.services-cards-editorial {
    margin: 48px 0;
}

.service-card {
    margin-bottom: 40px;
    padding: 32px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.6;
}

.service-card .price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 20px;
    margin-bottom: 20px;
}

.select-service-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    padding: 12px 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-service-btn:hover {
    background-color: #3a3a3a;
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.form-section p {
    margin-bottom: 32px;
    font-size: 17px;
}

.editorial-form {
    max-width: 560px;
}

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

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

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

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-field input[readonly] {
    background-color: #f0f0f0;
    color: #666;
}

.submit-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    padding: 14px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.disclaimer-section {
    margin: 60px 0 40px;
    padding: 24px 32px;
    background-color: #fff9e6;
    border-left: 4px solid #d4a500;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.page-header {
    margin-bottom: 48px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.header-subtitle {
    font-size: 21px;
    color: #666;
    font-style: italic;
}

.contact-info-section {
    margin: 48px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.email-display {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', monospace;
    color: #2a2a2a;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

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

.thanks-message {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #555;
}

.selected-service-info {
    margin: 32px 0;
    padding: 24px;
    background-color: #f5f5f5;
    border-radius: 6px;
}

.selected-service-info p {
    font-size: 17px;
    margin-bottom: 8px;
    color: #2a2a2a;
}

.thanks-next-steps {
    font-size: 17px;
    margin-bottom: 40px;
    color: #666;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #3a3a3a;
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

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

.legal-page .article-body {
    font-size: 17px;
}

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

.legal-content p {
    margin-bottom: 20px;
}

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

.legal-content a:hover {
    color: #3a3a3a;
}

.site-footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 60px 40px 20px;
    margin-top: 80px;
}

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

.footer-section {
    flex: 1;
}

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

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

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

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

.footer-section ul li a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 12px 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;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

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

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

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

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

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

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

.cookie-btn.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .editorial-main {
        padding: 40px 24px;
    }

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

    .article-intro {
        font-size: 18px;
    }

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

    .text-section h2 {
        font-size: 26px;
    }

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

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

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

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