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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #28a745;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

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

h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.3rem;
}

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

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

.nav-cta {
    display: flex;
}

.btn-nav {
    background: var(--secondary-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-nav:hover {
    background: #c0392b;
    color: white;
}

.editorial-container {
    margin-top: 80px;
}

.hero-editorial {
    padding: 4rem 2rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.eyebrow {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image {
    margin: 2.5rem 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.content-section {
    padding: 3rem 2rem;
}

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

.content-image {
    margin: 2.5rem 0;
    border-radius: 6px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
}

.inline-cta-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.cta-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.btn-inline {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    transition: background 0.3s;
}

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

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

.quote-block blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.text-cta {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

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

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

.testimonial {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.testimonial-author {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.services-preview {
    margin: 4rem 0;
}

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

.service-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

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

.btn-service:hover {
    background: #1a252f;
    color: white;
}

.urgency-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 8px;
    border: 2px solid var(--secondary-color);
}

.highlight-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin: 2rem 0;
}

.form-section {
    margin: 4rem 0;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 8px;
}

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

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

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
    font-size: 0.95rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.btn-submit {
    display: block;
    width: 100%;
    background: var(--secondary-color);
    color: white;
    padding: 1.1rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.btn-final {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
    transition: background 0.3s;
}

.btn-final:hover {
    background: #c0392b;
    color: white;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 1rem 2rem;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.btn-sticky {
    display: inline-block;
    background: white;
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform 0.3s;
}

.btn-sticky:hover {
    transform: scale(1.05);
    color: var(--secondary-color);
}

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

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

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

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

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

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.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;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.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-bottom: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-accept:hover {
    background: #218838;
}

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

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

.page-header {
    padding: 3rem 2rem 2rem;
    background: var(--bg-light);
}

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

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

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

.stats-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    justify-content: space-around;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.cta-box {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 8px;
    text-align: center;
}

.cta-box h3 {
    margin-top: 0;
}

.info-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    border-radius: 4px;
}

.info-box h3 {
    margin-top: 0;
    color: #2e7d32;
}

.services-full {
    margin: 3rem 0;
}

.service-detail {
    margin: 3rem 0;
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    position: relative;
}

.service-detail.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 1.5rem 0;
}

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

.service-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

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

.comparison-section {
    margin: 4rem 0;
}

.comparison-card {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.comparison-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.guarantee-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #e8f5e9;
    border-radius: 8px;
    text-align: center;
}

.guarantee-section h2 {
    margin-top: 0;
    color: #2e7d32;
}

.contact-info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-card {
    flex: 1;
    min-width: 280px;
}

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

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

.contact-image {
    flex: 1;
    min-width: 280px;
}

.contact-image img {
    border-radius: 8px;
}

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

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-top: 0;
}

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

.thanks-icon {
    margin: 2rem auto;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
}

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

.service-info-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fff3cd;
    border-radius: 8px;
    display: none;
}

.service-info-box h3 {
    margin-top: 0;
}

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

.thanks-cta {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 8px;
}

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

.btn-download:hover {
    background: #218838;
    color: white;
}

.useful-links {
    margin: 3rem 0;
}

.links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.link-card {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s, transform 0.3s;
}

.link-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.link-card h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
}

.link-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-reminder {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

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

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

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

@media (max-width: 768px) {
    .nav-floating {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin: 1rem 0;
    }

    .nav-cta {
        width: 100%;
    }

    .btn-nav {
        display: block;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .contact-info-section {
        flex-direction: column;
    }

    .links-grid {
        flex-direction: column;
    }

    .sticky-cta {
        padding: 0.8rem 1rem;
    }

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

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

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .hero-editorial,
    .content-section {
        padding: 2rem 1rem;
    }

    .service-card,
    .service-detail {
        padding: 1.5rem;
    }
}