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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 600;
    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: #2c3e50;
}

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

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

.hero-image-wrapper {
    width: 100%;
    height: 500px;
    background-color: #e9ecef;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-centered {
    max-width: 700px;
    margin: -80px auto 0;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.hero-content-centered h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-intro {
    font-size: 18px;
    color: #495057;
    line-height: 1.7;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #343a40;
}

.content-narrow p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.content-narrow h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-narrow h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

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

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #495057;
}

.testimonial-inline blockquote {
    font-size: 18px;
    line-height: 1.7;
    color: #343a40;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    color: #6c757d;
    font-style: normal;
}

.feature-list-editorial {
    margin: 40px 0;
}

.feature-item {
    margin-bottom: 35px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.feature-item p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
}

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

.btn-text-link {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-text-link:hover {
    background-color: #1a252f;
}

.checklist-editorial {
    list-style: none;
    margin: 30px 0;
}

.checklist-editorial li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    font-size: 17px;
}

.checklist-editorial li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
}

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

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

.services-selection-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin: 60px 0;
}

.services-cards-editorial {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 300px;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

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

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 15px;
}

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

.service-features li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    font-size: 15px;
    color: #495057;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
    font-size: 18px;
}

.service-price {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 0;
}

.btn-select-service {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

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

.contact-form-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.contact-form {
    max-width: 600px;
    margin: 30px auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
}

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-box {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    padding: 25px;
    margin: 50px 0;
}

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

.disclaimer-box p {
    font-size: 15px;
    color: #856404;
    line-height: 1.7;
}

.references-section {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

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

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

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

.page-header-simple {
    background-color: #f8f9fa;
    padding: 60px 0 40px;
    margin-bottom: 40px;
}

.page-header-simple h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.header-intro {
    font-size: 18px;
    color: #6c757d;
}

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

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.faq-section {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #495057;
}

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #495057;
}

.legal-content a {
    color: #007bff;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.thanks-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

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

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

.thanks-message {
    text-align: left;
    margin: 40px 0;
}

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

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.steps-list {
    list-style: decimal;
    padding-left: 25px;
    text-align: left;
}

.steps-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #495057;
}

.selected-service-info {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 4px;
    padding: 15px 20px;
    font-size: 16px;
    color: #0c5460;
    margin: 20px 0;
}

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

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 80px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e0;
}

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

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

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2c3e50;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 20px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    font-size: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }

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

    .hero-content-centered {
        margin-top: -60px;
        padding: 30px 20px;
    }

    .hero-content-centered h1 {
        font-size: 26px;
    }

    .content-narrow {
        padding: 30px 20px;
    }

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

    .service-card {
        flex-direction: column;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}