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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

a {
    color: #1a5490;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3a6b;
}

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

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

.nav-editorial .brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
}

.nav-editorial .brand a {
    color: #1a5490;
}

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

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: #4a4a4a;
}

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

.ad-notice {
    font-size: 13px;
    color: #888;
    font-style: italic;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

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

.hero-editorial {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 40px;
}

.hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.hero-text-overlay {
    padding: 40px 30px;
    background-color: #ffffff;
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    max-width: 800px;
}

.narrow-text {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 30px;
}

.page-header .narrow-text {
    padding-top: 80px;
    padding-bottom: 40px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 30px;
}

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

.narrow-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 35px;
    margin-bottom: 15px;
}

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

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
    background-color: #e8e8e8;
}

.custom-list {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.custom-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 16px;
    padding-left: 30px;
    position: relative;
}

.custom-list li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #1a5490;
    font-weight: 700;
    font-size: 22px;
}

.insight-box {
    background-color: #f5f7fa;
    border-left: 4px solid #1a5490;
    padding: 25px 30px;
    margin: 40px 0;
    border-radius: 4px;
}

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

.testimonial-card {
    background-color: #fafbfc;
    border: 1px solid #e1e4e8;
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

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

.cta-button-inline {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a5490;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button-inline:hover {
    background-color: #0d3a6b;
    color: #ffffff;
    transform: translateY(-2px);
}

.service-list-editorial {
    margin: 50px 0;
}

.service-item-editorial {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 35px;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
}

.service-item-editorial:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-item-editorial h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a5490;
    margin: 20px 0;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #1a5490;
    margin: 15px 0 25px 0;
}

.select-service-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #f5f7fa;
    color: #1a5490;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #1a5490;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.select-service-btn.selected {
    background-color: #1a5490;
    color: #ffffff;
}

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

.form-notice {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 4px;
    font-size: 16px;
}

.form-notice.hidden {
    display: none;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background-color: #ffffff;
    font-family: inherit;
}

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

.submit-button {
    display: inline-block;
    padding: 16px 50px;
    background-color: #1a5490;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #0d3a6b;
    transform: translateY(-2px);
}

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

.closing-text {
    font-size: 20px;
    line-height: 1.8;
    color: #2c2c2c;
    font-style: italic;
    margin: 60px 0;
    padding: 30px;
    background-color: #f5f7fa;
    border-left: 4px solid #1a5490;
    border-radius: 4px;
}

.disclaimer-box {
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
    padding: 25px 30px;
    margin: 50px 0;
    border-radius: 6px;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #78350f;
    margin-bottom: 0;
}

.references-list {
    margin: 30px 0;
    padding-left: 20px;
}

.references-list li {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.references-list a {
    color: #1a5490;
    word-break: break-word;
}

.footer-editorial {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 10px;
}

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

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

.footer-column ul li a {
    color: #b0b0b0;
    font-size: 15px;
}

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

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

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

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

.cookie-banner.hidden {
    display: none;
}

.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: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #8cb4e8;
}

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

.cookie-btn {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

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

.schedule-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.schedule-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 10px;
    padding-left: 0;
}

.note-text {
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

.thanks-message {
    margin-top: 50px;
}

.service-confirmation {
    background-color: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
    padding: 20px;
    margin: 30px 0;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 500;
}

.service-confirmation:empty {
    display: none;
}

.next-steps {
    margin: 40px 0;
}

.next-steps ol {
    margin: 20px 0;
    padding-left: 25px;
}

.next-steps ol li {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.cta-thanks {
    margin-top: 50px;
    text-align: center;
}

.service-detail-block {
    margin: 60px 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-block:last-of-type {
    border-bottom: none;
}

.cta-section-services {
    margin-top: 60px;
    padding: 40px;
    background-color: #f5f7fa;
    border-radius: 8px;
    text-align: center;
}

.cta-section-services h3 {
    font-size: 28px;
    margin: 0 0 15px 0;
}

.values-box {
    background-color: #e8f4f8;
    border-left: 4px solid #1a5490;
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}

.values-box h3 {
    margin-top: 0;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-content ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookies-table th {
    background-color: #f5f7fa;
    font-weight: 600;
    color: #2c2c2c;
}

.cookies-table td {
    font-size: 16px;
    color: #4a4a4a;
}

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

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .page-header h1 {
        font-size: 36px;
    }

    .narrow-text {
        padding: 40px 20px;
    }

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

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

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

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

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

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