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

.main-nav {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: block;
}

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

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

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

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

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

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

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

.btn-reject:hover {
    background-color: #fff;
    color: #2c3e50;
}

.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.hero-editorial {
    margin: 3rem 0 4rem;
}

.hero-content-narrow {
    margin-bottom: 2.5rem;
}

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.hero-image-full {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
}

section {
    margin: 4rem 0;
}

h2 {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c3e50;
    font-weight: 600;
}

h4 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2.5rem 0;
}

.cta-inline {
    margin: 2.5rem 0;
    text-align: center;
}

.btn-secondary,
.btn-primary-large {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover,
.btn-primary-large:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.testimonial {
    border-left: 4px solid #3498db;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

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

.benefits-list {
    margin: 2rem 0;
}

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

.benefit-item h4 {
    margin-bottom: 0.5rem;
}

.benefit-item p {
    margin-bottom: 1rem;
}

.service-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.service-card h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

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

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-section {
    background-color: #f0f4f8;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.contact-form {
    margin-top: 2rem;
}

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

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.btn-sticky {
    display: inline-block;
    padding: 1rem 1.8rem;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

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

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

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

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bbb;
}

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

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

.footer-column a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.page-header {
    margin: 3rem 0 2rem;
    text-align: center;
}

.header-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.services-detailed .service-detail {
    margin: 3rem 0;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

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

.features-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

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

.contact-detail h3 {
    margin-top: 2rem;
}

.contact-detail a {
    color: #3498db;
    text-decoration: none;
}

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

.faq-item {
    margin: 2.5rem 0;
}

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

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.thanks-section {
    padding: 3rem 0;
    text-align: center;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #27ae60;
    margin-bottom: 2.5rem;
}

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

.service-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border-left: 4px solid #3498db;
}

.next-steps {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.next-steps a {
    color: #3498db;
    text-decoration: none;
}

.next-steps a:hover {
    text-decoration: underline;
}

.thanks-cta {
    margin: 3rem 0;
    text-align: center;
}

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .hero-lead {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 1rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

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

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

    .service-card {
        padding: 1.5rem;
    }

    .form-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .editorial-container,
    .content-narrow {
        padding: 0 1rem;
    }

    .hero-editorial h1 {
        font-size: 1.7rem;
    }

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

    h2 {
        font-size: 1.4rem;
    }

    .btn-secondary,
    .btn-primary-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .service-card {
        padding: 1rem;
    }

    .price,
    .price-large {
        font-size: 1.4rem;
    }
}