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

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-center {
    display: flex;
    gap: 2rem;
}

.nav-center a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-center a:hover {
    color: #2c3e50;
}

.ad-notice {
    font-size: 0.75rem;
    color: #888;
    background-color: #f5f5f5;
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    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: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

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

.hero-editorial {
    position: relative;
    margin-bottom: 3rem;
}

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

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #ffffff;
    padding: 3rem 2rem;
}

.hero-text-overlay h1 {
    font-size: 2.8rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 1rem auto 0;
    opacity: 0.95;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.content-narrow h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    font-weight: 400;
    color: #2c3e50;
}

.content-narrow h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem;
    font-weight: 500;
    color: #34495e;
}

.content-narrow p {
    margin-bottom: 1.5rem;
}

.content-narrow img {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 2px;
    background-color: #f0f0f0;
}

.inline-image-section {
    background-color: #f9f9f9;
    padding: 3rem 0;
    margin: 3rem 0;
}

.cta-inline {
    margin: 3rem 0;
}

.cta-box-editorial {
    background-color: #ecf0f1;
    padding: 2.5rem;
    border-left: 4px solid #2c3e50;
    text-align: center;
}

.cta-box-editorial h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.cta-box-editorial p {
    margin-bottom: 1.5rem;
    color: #555;
}

.btn-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c3e50;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #2c3e50;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

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

.services-preview {
    background-color: #f5f5f5;
    padding: 4rem 0;
    margin: 4rem 0;
}

.services-grid-editorial {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card-editorial {
    background-color: #ffffff;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-editorial img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card-editorial h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 0.8rem;
    font-weight: 500;
    color: #2c3e50;
}

.service-card-editorial p {
    padding: 0 1.5rem;
    color: #555;
    flex: 1;
}

.service-features {
    list-style: none;
    padding: 0 1.5rem;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.4rem 0;
    color: #666;
    font-size: 0.9rem;
}

.service-features li:before {
    content: "• ";
    color: #2c3e50;
    font-weight: bold;
    margin-right: 0.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    padding: 1rem 1.5rem;
}

.btn-select {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 1rem;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section-editorial {
    background-color: #ffffff;
    padding: 3rem 0;
    margin: 3rem 0;
}

.editorial-form {
    max-width: 500px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

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

.disclaimer-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
}

.disclaimer-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #856404;
}

.disclaimer-box p {
    color: #856404;
    margin-bottom: 0;
}

.page-header-editorial {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.page-header-editorial h1 {
    font-size: 2.5rem;
    font-weight: 400;
}

.page-header-editorial .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.contact-info-section {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-card p {
    color: #555;
    line-height: 1.8;
}

.email-text {
    color: #2c3e50;
    font-weight: 500;
}

.faq-item {
    margin: 2rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.thanks-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.service-confirmation {
    background-color: #ecf0f1;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.service-confirmation p {
    margin: 0;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.next-steps {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 200px;
}

.step-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    margin: 0.5rem 0;
}

.legal-page a {
    color: #2c3e50;
}

.cookie-table {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 4px;
}

.footer-editorial {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-column p {
    color: #bdc3c7;
    margin-bottom: 0.8rem;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-center {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .hero-text-overlay h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .content-narrow {
        padding: 1.5rem 1rem;
    }

    .service-card-editorial {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .contact-info-section {
        flex-direction: column;
    }

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

    .next-steps {
        flex-direction: column;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}