:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7f;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --warning-color: #f39c12;
}

* {
    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: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
}

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: var(--success-color);
    color: white;
}

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

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

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

.main-nav {
    background-color: var(--primary-color);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: white;
    font-weight: 500;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
    color: white;
}

.editorial-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-editorial {
    text-align: center;
    margin-bottom: 60px;
    padding: 50px 20px;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 800;
}

.lead-text {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 70px;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.content-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 25px;
    color: var(--secondary-color);
    font-weight: 600;
}

.content-block p {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.content-block ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-block li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.7;
}

.inline-image {
    width: 100%;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.inline-image-wide {
    width: 100%;
    margin: 35px 0;
    border-radius: 10px;
}

.text-wrapper {
    max-width: 100%;
}

.content-block.reverse {
    display: flex;
    flex-direction: column-reverse;
}

.inline-cta {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    color: white;
}

.highlight-box {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
}

.warning-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.warning-item {
    background-color: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.warning-item h3 {
    color: var(--accent-color);
    font-size: 19px;
    margin-top: 0;
    margin-bottom: 10px;
}

.warning-item p {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
}

.testimonial-section {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    margin: 50px 0;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-section blockquote {
    margin: 0;
    font-style: italic;
}

.testimonial-section p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.testimonial-section cite {
    display: block;
    text-align: right;
    font-size: 15px;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.services-pricing {
    margin: 60px 0;
    max-width: 100%;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.price-card {
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 35px 25px;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.price-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.15);
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.price-card .price {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
    font-size: 16px;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: 700;
    margin-right: 8px;
}

.select-service {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.select-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.form-section {
    background-color: var(--bg-light);
    padding: 50px 35px;
    border-radius: 10px;
    margin: 60px 0;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.form-section > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px 30px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 30px;
    border-radius: 12px;
    margin: 70px 0;
}

.final-cta h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 34px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-cta-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.trust-section {
    text-align: center;
    margin: 60px 0;
}

.trust-section h3 {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.trust-item strong {
    font-size: 38px;
    color: var(--accent-color);
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.trust-item span {
    font-size: 15px;
    color: var(--text-dark);
}

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 50px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: white;
}

.footer-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

.sticky-cta.show {
    display: block;
}

.sticky-cta a {
    display: block;
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

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

.difference-list,
.diff-item {
    margin: 25px 0;
}

.diff-item {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 20px;
}

.diff-item h3 {
    color: var(--secondary-color);
    margin-top: 0;
}

.stats-section {
    margin: 50px 0;
    text-align: center;
}

.stats-section h3 {
    font-size: 26px;
    margin-bottom: 35px;
    color: var(--primary-color);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.stat-box strong {
    font-size: 42px;
    color: var(--accent-color);
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-box span {
    font-size: 16px;
    color: var(--text-dark);
}

.cta-section {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--bg-light);
    border-radius: 10px;
    margin: 60px 0;
}

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.services-detailed {
    margin: 50px 0;
}

.service-detail {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-detail.reverse {
    flex-direction: column-reverse;
}

.service-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    margin: 15px 0;
}

.service-desc {
    font-size: 17px;
    line-height: 1.7;
    margin: 20px 0;
}

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

.service-features li {
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
}

.service-features li::before {
    content: "→ ";
    color: var(--secondary-color);
    font-weight: 700;
    margin-right: 8px;
}

.btn-service {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    color: white;
}

.badge-featured {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin: 10px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(26, 58, 82, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
}

.step h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin: 0;
}

.step p {
    margin: 0;
    font-size: 16px;
}

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

.faq-section h2 {
    margin-bottom: 35px;
    text-align: center;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.faq-item h3 {
    font-size: 19px;
    color: var(--primary-color);
    margin: 0 0 12px 0;
}

.faq-item p {
    margin: 0;
    font-size: 16px;
}

.contact-info-section {
    margin: 50px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.contact-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card p {
    margin: 8px 0;
    font-size: 16px;
}

.contact-card a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-card .note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.faq-contact {
    margin-top: 30px;
}

.map-placeholder {
    margin: 60px 0;
    padding: 50px 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.map-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.map-info p {
    font-size: 17px;
    margin-bottom: 12px;
}

.map-info .note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    background-color: white;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
}

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

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.step-box {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: left;
}

.step-box h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin: 0 0 12px 0;
}

.step-box p {
    margin: 0;
    font-size: 16px;
}

.resource-list {
    text-align: left;
    max-width: 600px;
    margin: 25px auto;
}

.resource-list li {
    font-size: 17px;
    margin-bottom: 12px;
}

.back-home {
    margin: 50px 0 20px;
}

.btn-back {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color: var(--primary-color);
    color: white;
}

.legal-page {
    max-width: 900px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

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

.legal-content li {
    margin-bottom: 10px;
    font-size: 16px;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .hero-editorial h1 {
        font-size: 52px;
    }

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

    .warning-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .trust-indicators {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .process-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-detail {
        flex-direction: row;
        align-items: center;
    }

    .service-detail.reverse {
        flex-direction: row-reverse;
    }

    .service-image {
        width: 45%;
        flex-shrink: 0;
    }

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

    .content-block.reverse {
        flex-direction: column;
    }
}

@media (min-width: 1024px) {
    .services-pricing {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .warning-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sticky-cta {
        display: block;
    }
}
