:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ECC71;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

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

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

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

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

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

.nav-minimal {
    background: var(--bg-white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.editorial-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.article-meta {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.inline-figure {
    margin: 2.5rem 0;
    width: 100%;
}

.inline-figure img,
.inline-figure-small img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.inline-figure-small {
    margin: 2rem 0;
    width: 100%;
}

.story-section {
    margin-bottom: 3rem;
}

.story-section.alternate {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
    margin-left: -2rem;
    margin-right: -2rem;
}

.story-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.story-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.story-section h4 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.story-section p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.insight-box {
    background: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.insight-box h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.insight-box ul {
    list-style: none;
    padding: 0;
}

.insight-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.testimonial {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    background: var(--bg-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-medium);
    font-size: 0.95rem;
}

blockquote.testimonial {
    border-left: 4px solid var(--primary-color);
}

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

.list-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.list-content h4 {
    margin: 0 0 0.5rem 0;
}

.list-content p {
    margin: 0;
}

.highlight-stat {
    text-align: center;
    padding: 2.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    margin: 2.5rem 0;
}

.big-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.highlight-stat p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

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

.cta-section.inline-cta {
    background: var(--accent-color);
    color: white;
}

.cta-section.inline-cta h3 {
    color: white;
}

.cta-section h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-primary,
.btn-secondary,
.btn-large,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover,
.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

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

.btn-secondary:hover {
    background: #1a252f;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.services-pricing {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

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

.service-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #fff 0%, #fef5f4 100%);
    position: relative;
}

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

.service-desc {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 0;
}

.editorial-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.editorial-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.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 {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    margin-top: 1rem;
}

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

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

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

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

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

.service-detail {
    margin-bottom: 4rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.service-detail.featured-service {
    border: 3px solid var(--accent-color);
}

.service-header {
    background: var(--bg-light);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.service-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 0;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-image {
    width: 100%;
    margin: 0;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content {
    padding: 2rem;
}

.service-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

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

.service-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

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

.service-note {
    background: var(--bg-light);
    padding: 1.2rem;
    border-radius: 4px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.service-note.warning {
    border-left-color: #f39c12;
}

.service-testimonial {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.process-steps {
    margin: 2rem 0;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    margin: 0 0 0.5rem 0;
}

.step-content p {
    margin: 0;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-item p {
    margin: 0.3rem 0;
    line-height: 1.6;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
}

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

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

.contact-visual {
    flex: 1;
}

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

.contact-map-placeholder {
    background: var(--bg-light);
    padding: 3rem;
    text-align: center;
    border-radius: 8px;
    border: 2px dashed var(--border-color);
}

.help-topics {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.help-topic {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
}

.help-topic h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.help-topic p {
    margin: 0;
    color: var(--text-medium);
}

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

.checklist li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
}

.checklist li:before {
    content: "☑";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 1.3rem;
}

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

.legal-page ul,
.legal-page ol {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.7;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.thanks-page {
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 600px;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message {
    margin: 2rem 0;
}

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

.next-steps h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    border-left: 2px solid var(--border-color);
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: -15px;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

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

.service-confirmation {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
}

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

.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);
}

.cookie-table code {
    background: var(--bg-light);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.9rem;
}

.cookie-control {
    margin: 2rem 0;
}

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

    .contact-layout {
        flex-direction: row;
    }

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

    .help-topics {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-section.alternate {
        margin-left: -4rem;
        margin-right: -4rem;
        padding: 3rem 4rem;
    }
}

@media (max-width: 767px) {
    .editorial-title {
        font-size: 1.8rem;
    }

    .nav-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nav-links {
        justify-content: center;
    }

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

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }

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

    .story-section.alternate {
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 1.5rem 1rem;
    }
}