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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.8em;
    color: var(--primary-color);
}

h1 {
    font-size: 2.8em;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2em;
    margin-top: 1.5em;
}

h3 {
    font-size: 1.6em;
    margin-top: 1.3em;
}

p {
    margin-bottom: 1.2em;
}

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

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

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

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

.cookie-banner.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

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

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

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
    letter-spacing: -0.02em;
}

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

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

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

.editorial-hero {
    padding: 5rem 2rem 3rem;
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.3em;
    color: var(--text-medium);
    line-height: 1.6;
}

.hero-image-container {
    max-width: 900px;
    margin: 3rem auto 0;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
}

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

.story-section {
    padding: 4rem 2rem;
}

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

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

.bg-light {
    background-color: var(--bg-light);
}

.insight-section {
    padding: 4rem 2rem;
}

.insight-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.insight-list li {
    margin-bottom: 0.8rem;
    color: var(--text-medium);
}

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

.quote-block blockquote {
    font-size: 1.25em;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.quote-block cite {
    font-size: 0.95em;
    font-style: normal;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-inline {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.cta-box {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cta-box h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary-large {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.benefits-section {
    padding: 5rem 2rem;
}

.benefit-item {
    margin: 4rem 0;
}

.benefit-number {
    font-size: 3em;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.benefit-item img {
    margin-top: 1.5rem;
    border-radius: 6px;
}

.trust-section {
    padding: 4rem 2rem;
}

.testimonial {
    margin: 2.5rem 0;
    padding: 2rem;
    background: white;
    border-radius: 6px;
}

.testimonial p {
    font-size: 1.1em;
    font-style: italic;
    color: var(--text-medium);
}

.testimonial cite {
    font-style: normal;
    font-size: 0.9em;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.services-preview {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.service-card {
    background: white;
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

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

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

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

.form-section {
    padding: 5rem 2rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    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);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: 400;
    cursor: pointer;
}

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

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

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

.final-cta {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--bg-light);
}

.footer-editorial {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-brand h3 {
    color: white;
    margin-bottom: 0.5rem;
}

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

.footer-links {
    display: flex;
    gap: 4rem;
}

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

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column 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;
}

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

.about-hero, .services-hero, .contact-hero {
    padding: 4rem 2rem;
}

.values-section {
    padding: 4rem 2rem;
}

.value-item {
    margin: 2.5rem 0;
}

.approach-block {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 6px;
}

.team-section {
    padding: 4rem 2rem;
}

.impact-section {
    padding: 4rem 2rem;
}

.stat-block {
    margin: 2.5rem 0;
    text-align: center;
}

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

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

.services-intro {
    padding: 3rem 2rem;
}

.services-detailed {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.service-detail {
    background: white;
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.service-badge {
    position: absolute;
    top: -14px;
    right: 2rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.price-tag {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    white-space: nowrap;
}

.service-body {
    font-size: 1.05rem;
}

.service-description {
    font-size: 1.2em;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

.service-features li {
    margin-bottom: 0.8rem;
    color: var(--text-medium);
}

.service-btn {
    margin-top: 2rem;
}

.services-faq {
    padding: 4rem 2rem;
}

.faq-item {
    margin: 2rem 0;
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2em;
}

.services-cta {
    padding: 4rem 2rem;
    text-align: center;
}

.contact-section {
    padding: 4rem 2rem;
}

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

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

.contact-item h3 {
    font-size: 1.2em;
    color: var(--primary-color);
}

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

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

.contact-map {
    padding: 4rem 2rem;
}

.map-placeholder {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.contact-faq {
    padding: 4rem 2rem;
}

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

.timeline-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.timeline-content h3 {
    font-size: 1.2em;
    margin-top: 0;
}

.thanks-hero {
    padding: 5rem 2rem;
    text-align: center;
}

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

.thanks-details {
    padding: 4rem 2rem;
}

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

.step-card {
    background: var(--bg-light);
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 6px;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.2em;
    margin-top: 0;
}

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

.selected-service-name {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thanks-resources {
    padding: 4rem 2rem;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-card {
    padding: 2rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.resource-card h3 {
    margin-top: 0;
    color: var(--secondary-color);
}

.thanks-testimonial {
    padding: 4rem 2rem;
}

.legal-page {
    padding: 5rem 2rem;
}

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

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

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.8em;
}

.legal-section h3 {
    color: var(--text-dark);
    font-size: 1.3em;
}

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

.legal-section ul li {
    margin-bottom: 0.8rem;
    color: var(--text-medium);
}

.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.4em;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .editorial-hero {
        padding: 3rem 1.5rem 2rem;
    }

    .content-narrow {
        padding: 0 1.5rem;
    }

    .story-section,
    .insight-section {
        padding: 3rem 1.5rem;
    }

    .quote-block {
        padding: 1.5rem;
    }

    .cta-box {
        padding: 2rem;
    }

    .service-detail {
        padding: 2rem;
    }

    .service-header {
        flex-direction: column;
    }

    .price-tag {
        font-size: 2em;
    }

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

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

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

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }

    .timeline-item {
        gap: 1rem;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .logo {
        font-size: 1.2rem;
    }
}