* {
    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.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #94a3b8;
    padding: 4px 12px;
    background-color: #f1f5f9;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

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

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

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

.hero-section {
    padding: 0;
    margin-bottom: 60px;
}

.hero-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hero-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 60px 40px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.25rem;
    max-width: 700px;
    opacity: 0.95;
}

.intro-cards {
    padding: 60px 0;
}

.card-grid-2 {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.card-grid-2 > * {
    flex: 1;
    min-width: 300px;
}

.card-grid-3 {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.card-grid-3 > * {
    flex: 1;
    min-width: 280px;
}

.card-grid-4 {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.card-grid-4 > * {
    flex: 1;
    min-width: 200px;
}

.info-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #1e293b;
}

.info-card p {
    color: #64748b;
    line-height: 1.7;
}

.highlight-card {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.highlight-card p {
    color: #e0e7ff;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.features-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

.feature-content {
    padding: 28px;
}

.feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
}

.courses-preview {
    padding: 60px 0;
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 48px;
    color: #1e293b;
}

.course-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.course-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.2s;
    cursor: pointer;
}

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

.course-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

.course-info {
    padding: 32px;
}

.course-info h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.course-info p {
    color: #64748b;
    margin-bottom: 20px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.duration {
    color: #64748b;
    font-size: 0.95rem;
}

.testimonial-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #1e293b;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.95rem;
}

.enrollment-section {
    padding: 60px 0;
}

.enrollment-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.enrollment-card h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.enrollment-card > p {
    color: #64748b;
    margin-bottom: 32px;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

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

.btn-submit,
.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    padding: 14px 32px;
    border: 2px solid #2563eb;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

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

.disclaimer-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.disclaimer-card {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 24px 32px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-text {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

.cta-section {
    padding: 60px 0;
}

.cta-card-centered {
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-card-centered h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1e293b;
}

.cta-card-centered p {
    color: #64748b;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.main-footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.page-hero {
    padding: 80px 0 40px;
}

.page-hero-card {
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: center;
}

.page-hero-card h1 {
    font-size: 2.75rem;
    margin-bottom: 16px;
    color: #1e293b;
}

.page-hero-card p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    padding: 60px 0;
}

.story-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.story-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.story-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

.story-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
    border-radius: 12px;
}

.values-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.value-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

.team-section {
    padding: 60px 0;
}

.team-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.team-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

.team-info {
    padding: 32px;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: #1e293b;
}

.team-info > p:first-of-type {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-bio {
    color: #64748b;
    line-height: 1.6;
}

.stats-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.stat-card {
    background-color: #ffffff;
    padding: 40px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: center;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-card p {
    color: #64748b;
    font-size: 0.95rem;
}

.courses-section {
    padding: 40px 0;
}

.course-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 40px;
    overflow: hidden;
}

.course-detail-grid {
    display: flex;
    flex-wrap: wrap;
}

.course-detail-grid > * {
    flex: 1;
    min-width: 300px;
}

.course-detail-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

.course-detail-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.course-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.course-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.course-detail-content > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

.course-features {
    list-style: none;
    margin-bottom: 32px;
}

.course-features li {
    padding: 10px 0;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
}

.course-features li:before {
    content: "✓ ";
    color: #10b981;
    font-weight: 700;
    margin-right: 8px;
}

.comparison-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.benefit-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

.enrollment-cta {
    padding: 60px 0;
}

.contact-section {
    padding: 60px 0;
}

.contact-info-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.contact-info-card h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1e293b;
}

.contact-info-card > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #1e293b;
}

.contact-text {
    color: #64748b;
    line-height: 1.7;
}

.contact-map-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-card {
    background-color: #ffffff;
    padding: 28px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.faq-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.faq-card p {
    color: #64748b;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-card {
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thanks-card h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1e293b;
}

.thanks-message {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 32px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 12px;
}

.selected-course {
    font-weight: 600;
    color: #2563eb;
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
    color: #1e293b;
}

.steps-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #1e293b;
    text-align: center;
}

.step-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    text-align: center;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.support-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.support-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.support-card h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.support-card p {
    color: #64748b;
    line-height: 1.6;
}

.legal-page {
    padding: 40px 0;
}

.legal-content {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.legal-updated {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #1e293b;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 24px 0 12px;
    color: #334155;
}

.legal-section p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section ul li {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .card-grid-2 > *,
    .card-grid-3 > *,
    .card-grid-4 > * {
        min-width: 100%;
    }

    .course-detail-grid > * {
        min-width: 100%;
    }

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

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