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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafaf8;
}

.editorial-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0dc;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

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

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

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.lead-paragraph {
    font-size: 1.3rem;
    color: #4a4a4a;
    line-height: 1.6;
    font-style: italic;
}

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

.article-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 400;
}

.article-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #2c2c2c;
    font-weight: 600;
}

.article-section p {
    margin-bottom: 1.2rem;
}

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

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

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

.text-cta {
    color: #2563eb;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.text-cta:hover {
    opacity: 0.7;
}

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

.pullquote {
    font-size: 1.5rem;
    line-height: 1.5;
    font-style: italic;
    color: #1a1a1a;
    border-left: 4px solid #2563eb;
    padding-left: 2rem;
    margin: 2rem 0;
}

.pullquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: #6a6a6a;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0dc;
    padding: 2rem;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 0;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0dc;
}

.duration {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-family: 'Arial', sans-serif;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.service-select-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.service-select-btn:hover {
    background-color: #1d4ed8;
}

.testimonials-inline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2rem 0;
}

.testimonial {
    background-color: #f8f8f6;
    padding: 1.8rem;
    border-radius: 6px;
    border-left: 3px solid #2563eb;
}

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

.testimonial cite {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: normal;
}

.dark-section {
    background-color: #1a1a1a;
    color: #fafaf8;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem -2rem;
}

.dark-section h2 {
    color: #fafaf8;
}

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

.benefits-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.benefits-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 1.5rem;
    line-height: 1.3;
}

.enrollment-section {
    background-color: #f0f4f8;
    padding: 3rem;
    border-radius: 8px;
    margin: 4rem -2rem;
}

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

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

.form-row label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.form-row input,
.form-row select,
.form-row textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #d0d0cc;
    border-radius: 6px;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-btn {
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #1d4ed8;
}

.final-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0dc;
}

.final-cta p {
    font-size: 1.2rem;
}

.final-cta a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2563eb;
}

.editorial-footer {
    background-color: #1a1a1a;
    color: #fafaf8;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-column a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #7a7a7a;
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fafaf8;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

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

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

.cookie-btn.accept {
    background-color: #2563eb;
    color: #ffffff;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #fafaf8;
    border: 1px solid #fafaf8;
}

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

.services-detail-section {
    margin: 3rem 0;
}

.service-detail-card {
    background-color: #ffffff;
    border: 1px solid #e0e0dc;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

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

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

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.service-duration {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

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

.service-description ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.service-description li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

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

.contact-info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.contact-info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-info-block a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid #2563eb;
}

.contact-note {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 0.5rem;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.legal-updated {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-family: 'Arial', sans-serif;
}

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

.legal-page li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-page strong {
    color: #1a1a1a;
}

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

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.step-item {
    background-color: #f8f8f6;
    padding: 1.8rem;
    border-radius: 6px;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.step-item p {
    font-size: 1rem;
    margin: 0;
}

.enrolled-service {
    background-color: #e0f2fe;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.enrolled-service .course-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        display: none;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .lead-paragraph {
        font-size: 1.15rem;
    }

    .article-section h2 {
        font-size: 1.5rem;
    }

    .pullquote {
        font-size: 1.3rem;
        padding-left: 1.5rem;
    }

    .dark-section {
        margin: 3rem -1rem;
        padding: 2rem 1.5rem;
    }

    .enrollment-section {
        margin: 4rem -1rem;
        padding: 2rem 1.5rem;
    }

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

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

    .cookie-btn {
        width: 100%;
    }

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

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

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

    .editorial-container {
        padding: 2rem 1rem;
    }

    .article-header h1 {
        font-size: 1.7rem;
    }

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