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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafbfc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e1e8ed;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.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 {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    color: #4a5568;
}

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

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

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

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

.btn-reject {
    background-color: #e5e7eb;
    color: #374151;
}

.btn-reject:hover {
    background-color: #d1d5db;
}

.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
}

.ad-notice {
    font-size: 0.75rem;
    color: #718096;
    background-color: #f7fafc;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

.editorial-main {
    background-color: #ffffff;
    min-height: 80vh;
}

.story-article {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

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

.subtitle {
    font-size: 1.25rem;
    color: #718096;
    font-weight: 400;
    line-height: 1.6;
}

.story-block {
    margin-bottom: 2.5rem;
}

.story-block h2 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.story-block h3 {
    font-size: 1.35rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.story-block p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
}

.story-block ul,
.story-block ol {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.story-block li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.story-block strong {
    color: #2d3748;
    font-weight: 600;
}

.inline-image-large,
.inline-image-medium {
    margin: 2.5rem 0;
    background-color: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image-large img,
.inline-image-medium img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.insight-card p {
    font-size: 1.05rem;
    color: #f7fafc;
    margin-bottom: 0;
}

.cta-inline {
    background-color: #f7fafc;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
    border: 2px solid #e2e8f0;
}

.cta-inline h3 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.cta-inline p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

.courses-section h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.course-card {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.course-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.course-card.reverse {
    flex-direction: row-reverse;
}

.course-card.featured {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
}

.course-content {
    flex: 1;
    padding: 2rem;
}

.course-content.full-width {
    flex: 1;
}

.course-card.featured .course-content h3,
.course-card.featured .course-content p,
.course-card.featured .course-content li {
    color: #ffffff;
}

.course-content h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.course-content p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

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

.course-features li {
    font-size: 0.95rem;
    color: #4a5568;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.course-card.featured .course-features li {
    color: #ffffff;
}

.course-card.featured .course-features li::before {
    color: #ffffff;
}

.grid-features {
    display: flex;
    flex-direction: column;
}

.course-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.course-card.featured .course-details {
    border-top-color: rgba(255, 255, 255, 0.3);
}

.course-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.course-card.featured .course-meta {
    border-top-color: rgba(255, 255, 255, 0.3);
}

.duration {
    font-size: 0.9rem;
    color: #718096;
}

.course-card.featured .duration {
    color: #ffffff;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
}

.course-card.featured .price {
    color: #ffffff;
}

.course-image {
    flex: 1;
    min-width: 300px;
    background-color: #f7fafc;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-select-service {
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
}

.btn-select-service:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.course-card.featured .btn-select-service {
    background-color: #ffffff;
    color: #f5576c;
}

.course-card.featured .btn-select-service:hover {
    background-color: #f7fafc;
}

.testimonial {
    background-color: #f7fafc;
    border-left: 4px solid #2563eb;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
}

.testimonial p {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.95rem;
    color: #718096;
    font-style: normal;
    font-weight: 600;
}

.enrollment-section {
    background-color: #f7fafc;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    border: 2px solid #e2e8f0;
}

.enrollment-section.hidden {
    display: none;
}

.enrollment-section h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: center;
}

.selected-course {
    font-size: 1.1rem;
    color: #2563eb;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.course-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    color: #2d3748;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    background-color: #10b981;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.disclaimer-section {
    background-color: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
}

.disclaimer-section p {
    font-size: 0.9rem;
    color: #78350f;
    margin-bottom: 0;
}

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

.values-section h2 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 2rem;
    text-align: center;
}

.value-item {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2563eb;
}

.value-item h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.value-item p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0;
}

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

.contact-info-block h2 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

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

.detail-item h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.detail-item p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 0.25rem;
}

.detail-item .note {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

.contact-image-section {
    background-color: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.faq-section h2 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0;
}

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

.thanks-details {
    margin: 3rem 0;
}

.thanks-details h2 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
}

.step-item h3 {
    font-size: 1.25rem;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.step-item p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0;
}

.support-section {
    background-color: #eff6ff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #bfdbfe;
    margin: 2rem 0;
}

.support-section h3 {
    font-size: 1.25rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.support-section p {
    font-size: 1rem;
    color: #1e3a8a;
    margin-bottom: 0;
}

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

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.editorial-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: #cbd5e0;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0aec0;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

    .subtitle {
        font-size: 1.1rem;
    }

    .course-card,
    .course-card.reverse {
        flex-direction: column;
    }

    .course-image {
        min-width: 100%;
        min-height: 250px;
    }

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

    .cookie-content p {
        min-width: 100%;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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