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

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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    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: #2c3e50;
    text-decoration: none;
}

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

.nav-links a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

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

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

.hero-image-container {
    background-color: #e9ecef;
    margin-bottom: 30px;
    overflow: hidden;
}

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

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #212529;
    margin-bottom: 20px;
    font-weight: 700;
}

.subtitle {
    font-size: 20px;
    color: #6c757d;
    line-height: 1.5;
}

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

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

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    margin-top: 40px;
    color: #212529;
    font-weight: 600;
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 18px;
    margin-top: 35px;
    color: #343a40;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #495057;
}

.inline-image-wrapper {
    margin: 40px 0;
    background-color: #f8f9fa;
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    background-color: #f8f9fa;
}

.editorial-quote {
    border-left: 4px solid #007bff;
    padding-left: 25px;
    margin: 35px 0;
    font-size: 20px;
    font-style: italic;
    color: #495057;
    line-height: 1.6;
}

.inline-cta-box {
    background-color: #f1f3f5;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
}

.inline-cta-box h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #212529;
}

.inline-cta-box p {
    margin-bottom: 20px;
    color: #495057;
}

.cta-button {
    background-color: #007bff;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #0056b3;
}

.cta-button-secondary {
    background-color: #6c757d;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
}

.cta-button-secondary:hover {
    background-color: #5a6268;
}

.services-preview {
    background-color: #f8f9fa;
    padding: 50px 30px;
    margin: 60px -30px;
}

.section-intro {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

.service-cards-vertical {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

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

.service-image-container {
    background-color: #e9ecef;
    overflow: hidden;
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 0;
    color: #212529;
}

.service-content p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: #28a745;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.select-service-btn.selected {
    background-color: #ffc107;
    color: #212529;
}

.form-section {
    background-color: #ffffff;
    padding: 50px 30px;
    margin: 60px -30px;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.form-hint {
    font-size: 14px;
    color: #6c757d;
    margin-top: 6px;
}

.submit-button {
    background-color: #007bff;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #0056b3;
}

.submit-button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.disclaimer-box {
    background-color: #fff3cd;
    border-left: 4px solid: #ffc107;
    padding: 20px 25px;
    margin: 40px 0;
    border-radius: 6px;
}

.disclaimer-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #856404;
}

.disclaimer-box p {
    font-size: 15px;
    color: #856404;
    margin-bottom: 0;
}

.editorial-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 40px;
    margin-top: 60px;
}

.footer-references {
    margin-bottom: 30px;
}

.footer-references h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #212529;
}

.references-list {
    list-style-position: inside;
    font-size: 14px;
    color: #6c757d;
}

.references-list li {
    margin-bottom: 10px;
}

.references-list a {
    color: #007bff;
    text-decoration: none;
}

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

.citation {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-contact {
    font-size: 14px;
    color: #6c757d;
}

.footer-contact p {
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #212529;
    color: #ffffff;
    padding: 20px;
    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;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    flex: 1;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #28a745;
    color: #ffffff;
}

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

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

.cookie-reject:hover {
    background-color: #5a6268;
}

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

.page-header h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #212529;
    font-weight: 700;
}

.contact-info-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 0;
    color: #212529;
}

.contact-detail p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 0;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #212529;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #343a40;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #495057;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    margin-left: 25px;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #495057;
}

.thanks-section {
    padding: 60px 30px;
    text-align: center;
}

.thanks-box {
    background-color: #f8f9fa;
    padding: 50px 40px;
    border-radius: 8px;
    max-width: 680px;
    margin: 0 auto;
}

.thanks-box h1 {
    font-size: 36px;
    color: #28a745;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #495057;
    margin-bottom: 30px;
}

.selected-service-info {
    background-color: #e7f3ff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #004085;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #212529;
}

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

.next-steps li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #495057;
}

.cta-buttons-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.service-detail-card {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e9ecef;
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-image {
    background-color: #f8f9fa;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 8px;
}

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

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 20px;
}

.service-detail-card ul {
    list-style-position: inside;
    margin-top: 20px;
}

.service-detail-card li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #495057;
}

.cta-section-centered {
    text-align: center;
    background-color: #f1f3f5;
    padding: 40px 30px;
    border-radius: 8px;
    margin-top: 50px;
}

.cta-section-centered h3 {
    font-size: 26px;
    margin-bottom: 15px;
    margin-top: 0;
    color: #212529;
}

.cta-section-centered p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 25px;
}

.values-section {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 35px 0;
}

.values-list {
    list-style: none;
    margin-left: 0;
}

.values-list li {
    margin-bottom: 20px;
    font-size: 16px;
    color: #495057;
}

.values-list strong {
    color: #212529;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #212529;
}

.cookie-table td {
    color: #495057;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .subtitle {
        font-size: 18px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons-group {
        flex-direction: column;
    }

    .cta-button-secondary {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }
}