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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #dfe6e9;
    --success-color: #27ae60;
    --highlight-color: #e67e22;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 18px;
    background: #ffffff;
}

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

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

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

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

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

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

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

.article-hero {
    margin-bottom: 4rem;
    text-align: left;
}

.article-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -1px;
}

.lead {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 2rem;
}

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

.story-section h2 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.3;
}

.story-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.story-section p {
    margin-bottom: 1.5rem;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 2rem 0;
}

caption {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
    text-align: center;
}

.image-break {
    margin: 4rem 0;
}

.inline-cta {
    margin: 2rem 0;
}

.text-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.text-link:hover {
    border-bottom-color: var(--accent-color);
}

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

blockquote.testimonial-inline p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

blockquote.testimonial-inline cite {
    font-style: normal;
    color: #666;
    font-size: 0.95rem;
}

.methodology-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.method-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.method-card {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 4px;
}

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

.method-card p {
    margin-bottom: 0;
}

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

.benefits-list li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.pricing-reveal {
    margin: 4rem 0;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-option {
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
}

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

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

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

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

.service-option p {
    margin-bottom: 1.2rem;
}

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

.select-service {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.button-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background 0.3s, transform 0.2s;
    margin-right: 1rem;
}

.button-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background 0.3s, color 0.3s;
    margin-right: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

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

.final-cta-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid var(--border-color);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    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: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-privacy {
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-privacy input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-privacy label {
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
}

.form-privacy a {
    color: var(--accent-color);
}

.button-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--success-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.button-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.closing {
    font-style: italic;
    color: #555;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.editorial-footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-note {
    font-size: 0.85rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 2000;
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

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

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

.cookie-btn:hover {
    opacity: 0.9;
}

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

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--highlight-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.legal-page .story-section {
    margin-bottom: 2.5rem;
}

.services-full .service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.services-full .service-detail:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-header h2 {
    flex: 1;
    margin: 0;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.service-fit {
    background: #fff3e0;
    padding: 1.5rem;
    border-left: 4px solid var(--highlight-color);
    margin: 2rem 0;
    font-size: 0.98rem;
}

.featured-service {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 6px;
    border: 2px solid var(--accent-color);
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.contact-item p {
    margin: 0;
    line-height: 1.8;
}

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

.note {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-top: 0.5rem;
}

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

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

.thanks-page .article-hero {
    text-align: center;
}

.service-confirmation {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--success-color);
}

.exercise-box {
    background: #e8f5e9;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
    border-left: 4px solid var(--success-color);
}

.exercise-box h3 {
    margin-top: 0;
    color: var(--success-color);
}

.exercise-steps {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.exercise-steps li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.exercise-note {
    font-size: 0.95rem;
    font-style: italic;
    color: #2e7d32;
    margin-top: 1rem;
}

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

.cookie-item {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.cookie-item h4 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-family: monospace;
    color: var(--primary-color);
}

.cookie-item p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

    .lead {
        font-size: 1.15rem;
    }

    .story-section h2 {
        font-size: 1.6rem;
    }

    .editorial-container {
        padding: 3rem 1.5rem;
    }

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

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

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

    .cookie-btn {
        width: 100%;
    }

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

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

    .button-primary,
    .button-secondary {
        display: block;
        text-align: center;
        margin-right: 0;
        margin-bottom: 1rem;
    }

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

@media (max-width: 480px) {
    .article-hero h1 {
        font-size: 1.9rem;
    }

    .price {
        font-size: 1.7rem;
    }

    .service-option {
        padding: 1.5rem;
    }
}
