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

:root {
    --primary-color: #2C3E50;
    --secondary-color: #E74C3C;
    --accent-color: #3498DB;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #F8F9FA;
    --border-color: #E1E8ED;
    --success-color: #2ECC71;
    --spacing-unit: 1.5rem;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

.nav-minimal {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

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

.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: 2rem;
}

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

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

.editorial-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.hero-editorial {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 4rem 2rem 0;
}

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

.hero-editorial h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.4rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}

.hero-image img {
    width: 100%;
    object-fit: cover;
}

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

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

.text-large {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 500;
}

.inline-image {
    margin: 3rem 0;
    width: 100%;
}

.inline-image img {
    width: 100%;
    border-radius: 8px;
}

.inline-image figcaption {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.8rem;
    text-align: center;
}

.inline-cta {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    text-align: center;
}

.cta-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: var(--secondary-color);
}

.cta-link-alt {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.highlight-section {
    background: #FFF9F5;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 3rem auto;
}

.warning-section {
    background: #FFF5F5;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 3rem auto;
}

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

.checklist li {
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.checklist li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.emphasis {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--secondary-color);
    margin: 2rem 0;
}

.quote-block {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 5px solid var(--primary-color);
}

.quote-block blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--primary-color);
}

.quote-block cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
}

.comparison-box {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.comparison-col {
    flex: 1;
    padding: 1.5rem;
    background: white;
    border-radius: 6px;
}

.comparison-col h3 {
    margin-top: 0;
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.price-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.testimony-section {
    margin: 3rem auto;
}

.testimony {
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.testimony p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

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

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

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

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

.final-cta {
    text-align: center;
    margin: 4rem auto;
    padding: 3rem 2rem;
}

.btn-large {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: white;
    border-radius: 6px;
    transition: background 0.3s ease;
    margin-top: 1.5rem;
}

.btn-large:hover {
    background: #2980B9;
}

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

.sticky-btn {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.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: 250px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    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;
    line-height: 1.5;
}

.cookie-content a {
    color: #3498DB;
}

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

.btn-cookie,
.btn-cookie-alt {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.btn-cookie:hover {
    background: #27AE60;
}

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

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

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

.document-date {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.service-item {
    margin: 3rem 0;
    padding: 2.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-item h2 {
    margin-top: 0;
    color: var(--primary-color);
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

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

.service-features li {
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.btn-service {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: white;
    border-radius: 6px;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

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

.featured-service {
    position: relative;
    border-color: var(--success-color);
    background: #F0FFF4;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--success-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.btn-service-large {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.1rem 2.5rem;
    background: var(--success-color);
    color: white;
    border-radius: 6px;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.btn-service-large:hover {
    background: #27AE60;
}

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

.stats-section {
    display: flex;
    justify-content: space-around;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

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

.contact-detail {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-detail h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

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

.process-list li {
    counter-increment: process-counter;
    margin-bottom: 2rem;
    padding-left: 4rem;
    position: relative;
}

.process-list li:before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.faq-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--accent-color);
}

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

.cta-box {
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: var(--accent-color);
    color: white;
    border-radius: 8px;
    text-align: center;
}

.cta-box h2 {
    color: white;
    margin-top: 0;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-section h1 {
    color: var(--success-color);
}

.service-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-weight: 600;
}

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

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

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

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

.btn-primary:hover {
    background: #2980B9;
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--primary-color);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: white;
}

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

.contact-reminder h3 {
    margin-top: 0;
}

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

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

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.document-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

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

    .lead {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .comparison-box {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .stats-section {
        flex-direction: column;
    }

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

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

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

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

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

    .process-list li {
        padding-left: 3rem;
    }

    .process-list li:before {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem;
    }
}
