* {
    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: #2c3e50;
    background: #ffffff;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

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

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

.hero-editorial {
    padding: 4rem 2rem;
    text-align: center;
}

.hero-text-center {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-text-center h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.lead {
    font-size: 1.4rem;
    color: #555;
    line-height: 1.6;
}

.hero-image-inline {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
}

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

.content-narrow h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #444;
}

.content-image {
    margin: 2.5rem 0;
    border-radius: 4px;
}

.editorial-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.editorial-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
}

.inline-cta {
    text-align: center;
    padding: 2rem 0;
}

.btn-inline {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

.testimonial-inline {
    background: #f9f9f9;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
}

.testimonial-inline blockquote {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    color: #2c3e50;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #777;
}

.image-break {
    margin: 3rem 0;
}

.full-width-image {
    width: 100%;
}

.services-editorial {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-editorial {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

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

.service-card-editorial h3,
.service-card-editorial h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card-editorial p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.price-editorial {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0;
}

.btn-service {
    background: #3498db;
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

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

.service-card-editorial.detailed {
    padding: 2.5rem;
}

.cta-section-editorial {
    background: #f4f4f4;
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.cta-section-editorial h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section-editorial p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.form-editorial {
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-editorial input,
.form-editorial select,
.form-editorial textarea {
    padding: 0.9rem 1.1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    background: #27ae60;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.final-section {
    text-align: center;
    padding: 3rem 2rem;
}

.btn-final {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: background 0.3s ease;
}

.btn-final:hover {
    background: #2980b9;
    color: #ffffff;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    color: #aaa;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
}

.btn-sticky {
    display: block;
    background: #e74c3c;
    color: #ffffff;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-sticky:hover {
    background: #c0392b;
    color: #ffffff;
    transform: translateY(-2px);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.btn-cookie:hover {
    background: #229954;
}

.btn-cookie-alt {
    background: #95a5a6;
    color: #ffffff;
}

.btn-cookie-alt:hover {
    background: #7f8c8d;
}

.page-header {
    text-align: center;
    padding: 4rem 2rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-header p {
    font-size: 1.1rem;
    color: #777;
}

.contact-info {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1.05rem;
    color: #555;
    margin: 0.3rem 0;
}

.contact-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.thanks-container {
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-icon {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-info {
    margin: 2rem auto;
    text-align: left;
}

.thanks-info h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.thanks-info h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem;
    color: #1a1a1a;
}

.service-confirmation {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.service-confirmation p {
    font-weight: 600;
    color: #27ae60;
}

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

.btn-secondary {
    display: inline-block;
    background: #95a5a6;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #7f8c8d;
    color: #ffffff;
}

.legal-page .content-narrow {
    padding: 2rem 2rem 4rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #555;
}

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

    .hero-text-center h1 {
        font-size: 2.2rem;
    }

    .lead {
        font-size: 1.15rem;
    }

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

    .content-narrow h2 {
        font-size: 1.6rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.8rem 1.4rem;
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text-center h1 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
