* {
    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;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.nav-minimal {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    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: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

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

.hero-editorial {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.hero-content-narrow {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    color: #546e7a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-image-inline {
    max-width: 1000px;
    margin: 40px auto 0;
    background-color: #e9ecef;
}

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

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

.story-section {
    padding: 60px 0;
}

.intro-paragraph {
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #34495e;
    font-weight: 500;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #546e7a;
}

.story-section h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.inline-image-medium {
    margin: 40px 0;
    background-color: #e9ecef;
}

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

.services-inline {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.services-inline h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-inline > .content-narrow > p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #546e7a;
}

.service-card-editorial {
    margin-bottom: 60px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.service-card-editorial h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.service-card-editorial img {
    width: 100%;
    height: auto;
    margin: 20px 0;
    display: block;
    object-fit: cover;
    border-radius: 6px;
    background-color: #e9ecef;
}

.service-card-editorial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #546e7a;
}

.price-inline {
    font-size: 19px;
    margin: 20px 0;
    color: #2c3e50;
}

.price-inline strong {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.cta-inline {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #2980b9;
}

.form-section-story {
    padding: 60px 0;
}

.form-section-story h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-section-story > .content-narrow > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #546e7a;
}

.editorial-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit-editorial {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 30px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.closing-story {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.closing-story p {
    font-size: 19px;
    line-height: 1.7;
    color: #546e7a;
    font-style: italic;
}

.footer-editorial {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-narrow {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.footer-links a:hover {
    color: #3498db;
}

.disclaimer-footer {
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
}

.disclaimer-footer strong {
    color: #ffffff;
}

.copyright {
    text-align: center;
    font-size: 13px;
    color: #95a5a6;
    margin-top: 30px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.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);
}

.page-header-editorial {
    padding: 60px 20px 40px;
    background-color: #f8f9fa;
}

.page-header-editorial h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-detailed {
    padding: 60px 0;
}

.service-full-editorial {
    margin-bottom: 70px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e9ecef;
}

.service-full-editorial:last-child {
    border-bottom: none;
}

.service-full-editorial h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.service-full-editorial img {
    width: 100%;
    height: auto;
    margin: 20px 0 30px;
    display: block;
    object-fit: cover;
    border-radius: 6px;
    background-color: #e9ecef;
}

.service-full-editorial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #546e7a;
}

.price-large {
    font-size: 28px;
    margin: 30px 0 20px;
    color: #27ae60;
    font-weight: 700;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.cta-services-bottom h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.cta-services-bottom p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #546e7a;
}

.btn-cta-simple {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

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

.contact-section {
    padding: 60px 0;
}

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

.contact-info-block h2 {
    font-size: 30px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
}

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

.contact-note {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #546e7a;
}

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

.contact-note a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.contact-note a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 80px 0;
}

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

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    margin: 40px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #546e7a;
}

.thanks-message p:last-child {
    margin-bottom: 0;
}

.thanks-message strong {
    color: #2c3e50;
    font-weight: 600;
}

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

.btn-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    background-color: #3498db;
    color: #ffffff;
}

.legal-page {
    padding: 60px 0;
}

.updated-date {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #34495e;
    font-weight: 600;
}

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

.legal-section ul {
    margin: 15px 0 15px 25px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #546e7a;
}

.legal-section a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 32px;
    }

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

    .nav-links {
        gap: 15px;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }

    .editorial-form {
        padding: 30px 20px;
    }

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