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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --text-color: #2d2d2d;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e4e8;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

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

a:hover {
    opacity: 0.7;
}

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

.nav-minimal {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-links a {
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.editorial-content {
    max-width: 100%;
    margin: 0 auto;
    background: var(--bg-white);
}

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

.header-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.separator {
    color: var(--border-color);
}

.category,
.reading-time {
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.hero-editorial {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.hero-editorial img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.hero-editorial figcaption {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

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

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 400;
}

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

.content-image {
    width: 100%;
    margin: 3rem 0;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.editorial-quote {
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    font-size: 1.3rem;
    font-style: italic;
    background: var(--bg-light);
    color: var(--primary-color);
}

.inline-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--bg-white);
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 8px;
    text-align: center;
}

.inline-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
}

.btn-inline {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s ease;
}

.btn-inline:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.styled-list {
    list-style: none;
    margin: 2rem 0;
}

.styled-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.1rem;
}

.styled-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.content-highlight {
    background: var(--bg-light);
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.content-highlight h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-hover);
}

.service-card h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.price-reveal {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
    font-family: 'Arial', sans-serif;
}

.btn-service {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: var(--secondary-color);
}

.service-card-detailed {
    position: relative;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--accent-color);
    color: var(--bg-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Arial', sans-serif;
}

.service-includes {
    margin: 2rem 0;
}

.service-includes h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    color: var(--text-light);
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.price-tag {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Arial', sans-serif;
}

.inline-cta-strong {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 3rem 2.5rem;
    margin: 4rem 0;
    border-radius: 8px;
    text-align: center;
}

.inline-cta-strong h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.inline-cta-strong p {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-primary-large {
    display: inline-block;
    background: var(--bg-white);
    color: var(--accent-color);
    padding: 1.1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.testimonial-inline {
    background: var(--bg-light);
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-editorial {
    background: var(--bg-light);
    padding: 3rem;
    margin: 4rem 0;
    border-radius: 8px;
}

.form-editorial h3 {
    margin-top: 0;
    text-align: center;
    color: var(--primary-color);
}

.form-editorial > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    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(--accent-color);
}

.btn-submit {
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 1.1rem 2.5rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s ease;
}

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

.final-push {
    text-align: center;
    padding: 3rem 0;
    margin: 4rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.final-push h2 {
    margin-top: 0;
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
    margin: 2rem 0;
    padding-left: 0;
}

.process-list li {
    counter-increment: process-counter;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--accent-color);
    color: var(--bg-white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.comparison-section {
    background: var(--bg-light);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 8px;
    text-align: center;
}

.faq-section {
    margin: 3rem 0;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.contact-info-section {
    margin: 3rem 0;
}

.info-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.info-block h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.info-block p {
    margin-bottom: 0;
    color: var(--text-light);
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    display: none;
}

.selected-service {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #d13851;
}

.btn-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.additional-info {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.legal-page {
    background: var(--bg-white);
}

.legal-page .content-narrow {
    max-width: 800px;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

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

.legal-page li {
    margin-bottom: 0.8rem;
}

.terms-acceptance {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    font-weight: 600;
    border-radius: 4px;
}

.footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

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

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    background: var(--bg-white);
    color: var(--accent-color);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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-actions {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 0.8rem 2rem;
    }

    .content-narrow {
        padding: 1.5rem;
    }

    .lead-paragraph {
        font-size: 1.15rem;
    }

    .content-narrow p {
        font-size: 1rem;
    }

    .service-pricing {
        flex-direction: column;
        align-items: stretch;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

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

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-actions button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
    }

    .article-header {
        padding: 3rem 1rem 1.5rem;
    }

    .price-reveal,
    .price-tag {
        font-size: 1.8rem;
    }

    .service-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
