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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --text-color: #2d2d2d;
    --light-text: #666;
    --background: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --link-color: #0f3460;
    --success-color: #2e7d32;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--background);
}

.ad-notice {
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--light-text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.nav-minimal {
    background-color: var(--background);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--link-color);
}

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

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

.hero-image-container {
    margin-bottom: 40px;
    background-color: var(--light-bg);
    overflow: hidden;
}

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

.hero-text-narrow h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 0;
}

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

.page-header-narrow h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--light-text);
    line-height: 1.6;
}

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

.text-block h2 {
    font-size: 1.75rem;
    line-height: 1.4;
    margin-bottom: 20px;
    margin-top: 40px;
    color: var(--primary-color);
    font-weight: 600;
}

.text-block h3 {
    font-size: 1.35rem;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 30px;
    color: var(--secondary-color);
    font-weight: 600;
}

.text-block p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.text-block a {
    color: var(--link-color);
    text-decoration: underline;
}

.citation {
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--link-color);
    font-weight: 600;
}

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

.inline-image-block {
    margin: 50px 0;
    background-color: var(--light-bg);
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: italic;
    background-color: var(--light-bg);
}

.editorial-list {
    margin: 20px 0 20px 30px;
    font-size: 1.05rem;
}

.editorial-list li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.insight-box {
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    padding: 30px;
    margin: 50px 0;
}

.insight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 0;
    color: var(--primary-color);
}

.insight-box p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.insight-box p:last-child {
    margin-bottom: 0;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 0 20px;
}

.testimonial-inline blockquote {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--secondary-color);
    border-left: 3px solid var(--border-color);
    padding-left: 25px;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 0.95rem;
    font-style: normal;
    color: var(--light-text);
}

.services-editorial {
    margin: 50px 0;
}

.service-card {
    background-color: var(--light-bg);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 3px solid var(--accent-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.service-duration {
    font-size: 0.9rem;
    color: var(--light-text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.service-card-detailed {
    margin-bottom: 60px;
}

.service-image {
    margin-bottom: 25px;
    background-color: var(--light-bg);
}

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

.service-content h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.service-price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.btn-select-service,
.btn-primary,
.btn-submit {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.btn-select-service:hover,
.btn-primary:hover,
.btn-submit:hover {
    background-color: var(--secondary-color);
}

.cta-inline {
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
}

.cta-inline h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 0;
}

.cta-inline p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.cta-inline .btn-primary {
    background-color: #ffffff;
    color: var(--accent-color);
}

.cta-inline .btn-primary:hover {
    background-color: var(--light-bg);
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: var(--light-bg);
}

.form-section h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-section > p {
    margin-bottom: 30px;
    color: var(--light-text);
}

.editorial-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    margin-top: 10px;
}

.disclaimer-section {
    margin: 50px 0;
    padding: 25px;
    background-color: var(--light-bg);
    border-left: 3px solid var(--light-text);
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--light-text);
    margin: 0;
}

.references-section {
    margin: 60px 0;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.references-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.references-list {
    list-style: decimal;
    margin-left: 25px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.references-list a {
    color: var(--link-color);
    text-decoration: none;
}

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

.contact-info-block {
    margin: 50px 0;
}

.contact-section {
    margin-bottom: 40px;
}

.contact-section h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-email {
    font-family: 'Courier New', monospace;
    color: var(--text-color);
    font-weight: 600;
}

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

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

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.legal-content .text-block {
    margin-bottom: 40px;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0 15px 30px;
}

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

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

.cookies-table thead tr {
    background-color: var(--light-bg);
    text-align: left;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
}

.cookies-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.site-footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a.active {
    color: #ffffff;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #ffffff;
    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: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.btn-accept {
    background-color: #ffffff;
    color: var(--primary-color);
}

.btn-accept:hover {
    opacity: 0.9;
}

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

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

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

    .nav-links {
        gap: 20px;
    }

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

    .hero-text-narrow h1 {
        font-size: 1.9rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .page-header-narrow h1 {
        font-size: 1.8rem;
    }

    .text-block h2 {
        font-size: 1.5rem;
    }

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

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .cookies-table {
        font-size: 0.85rem;
    }

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