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

:root {
    --primary-color: #0a2540;
    --secondary-color: #1e5a8e;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #f8f9fa;
    --gray-100: #f7f7f7;
    --gray-200: #e5e5e5;
    --gray-300: #cccccc;
    --gray-600: #666666;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style-position: inside;
}

.main-nav {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-section {
    min-height: 70vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1600&h=900&fit=crop'), linear-gradient(135deg, rgba(10, 37, 64, 0.9) 0%, rgba(30, 90, 142, 0.9) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    padding: 4rem 2rem;
}

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

.hero-title {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.9rem 2.3rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.cta-inline {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: var(--accent-color);
    border-bottom-color: var(--secondary-color);
}

.story-intro {
    padding: 5rem 2rem;
    background-color: var(--gray-100);
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

.story-lead {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.story-intro p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

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

.problem-amplification {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.problem-amplification h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.impact-list {
    list-style: none;
    margin: 2rem 0;
}

.impact-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.impact-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.3rem;
}

.emphasis-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2rem;
}

.insight-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f0f4f8 0%, #e5ecf3 100%);
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.insight-cta {
    text-align: center;
    margin-top: 3rem;
}

.scenario-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.scenario-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.scenario-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.scenario-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--gray-100);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.scenario-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.scenario-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.scenario-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.trust-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
}

.trust-section h2 {
    color: var(--text-light);
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonials-section {
    padding: 6rem 2rem;
    background-color: var(--gray-100);
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.benefits-reveal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.benefits-list {
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--success-color);
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.benefit-text p {
    color: var(--gray-600);
    line-height: 1.7;
}

.benefit-cta {
    text-align: center;
    margin-top: 3rem;
}

.methodology-section {
    padding: 6rem 2rem;
    background-color: var(--gray-100);
}

.methodology-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.urgency-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--text-light);
}

.urgency-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 3rem;
}

.urgency-box h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.urgency-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 2rem;
}

.urgency-cta {
    text-align: center;
    margin-top: 2rem;
}

.cta-urgent {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 107, 53, 0.6);
    }
}

.pricing-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: var(--gray-600);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--gray-100);
    border-radius: 8px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.pricing-card.premium {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.pricing-duration {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.pricing-features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.pricing-cta {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.pricing-guarantee {
    max-width: 700px;
    margin: 4rem auto 0;
    text-align: center;
    padding: 2rem;
    background-color: var(--gray-100);
    border-radius: 8px;
}

.pricing-guarantee h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f0f4f8 0%, #e5ecf3 100%);
}

.form-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--gray-600);
}

.enrollment-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--gray-200);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    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);
}

.form-group input[readonly] {
    background-color: var(--gray-100);
}

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

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

.form-submit-btn {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--text-light);
    border: none;
    padding: 1.2rem;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    text-align: center;
}

.final-cta-section {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.final-cta-section h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-section {
    padding: 6rem 2rem;
    background-color: var(--gray-100);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: #ffffff;
    margin-bottom: 1rem;
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-size: 1.15rem;
    color: var(--primary-color);
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--gray-100);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-cta-text {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.sticky-cta-button {
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sticky-cta-button:hover {
    background-color: #e55a2b;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
}

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

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

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

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    color: var(--text-dark);
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: var(--success-color);
    color: var(--text-light);
}

.cookie-accept:hover {
    background-color: #218838;
}

.cookie-reject {
    background-color: var(--gray-300);
    color: var(--text-dark);
}

.cookie-reject:hover {
    background-color: var(--gray-600);
    color: var(--text-light);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.courses-intro {
    padding: 3rem 2rem;
    background-color: var(--gray-100);
}

.courses-catalog {
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.course-detail-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.course-detail-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.course-detail-card.featured {
    border-color: var(--accent-color);
    position: relative;
}

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

.course-detail-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.course-price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.course-info-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.info-item {
    flex: 1;
    min-width: 150px;
}

.info-item strong {
    color: var(--primary-color);
}

.course-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.course-detail-content h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.course-curriculum {
    list-style: none;
    margin: 1rem 0 2rem;
}

.course-curriculum li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
}

.course-curriculum li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.course-enroll-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.course-enroll-btn:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.comparison-section {
    padding: 5rem 2rem;
    background-color: var(--gray-100);
}

.comparison-table-container {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

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

.comparison-table tr.table-featured {
    background-color: #fff5f2;
}

.financing-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.financing-options {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.financing-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--gray-100);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.financing-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.financing-cta {
    text-align: center;
    margin-top: 2rem;
}

.services-cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    text-align: center;
}

.services-cta-section h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-story h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.mission-section {
    padding: 5rem 2rem;
    background-color: var(--gray-100);
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.values-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.values-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--gray-100);
    padding: 2rem;
    border-radius: 8px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.team-section {
    padding: 5rem 2rem;
    background-color: var(--gray-100);
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.team-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.member-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

.team-member h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--gray-600);
    line-height: 1.6;
}

.stats-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.stats-showcase {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-showcase-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.stat-big-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.partners-section {
    padding: 5rem 2rem;
    background-color: var(--gray-100);
    text-align: center;
}

.partners-intro {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.partners-note {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.philosophy-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.philosophy-points {
    margin-top: 3rem;
}

.philosophy-point {
    margin-bottom: 2.5rem;
}

.philosophy-point h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.philosophy-point p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.community-section {
    padding: 5rem 2rem;
    background-color: var(--gray-100);
}

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

.community-events li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
}

.community-events li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.cta-about-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    text-align: center;
}

.cta-about-section h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-intro {
    padding: 3rem 2rem;
    background-color: var(--gray-100);
}

.contact-info-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    background-color: var(--gray-100);
    padding: 2.5rem 2rem;
    border-radius: 8px;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-note {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-top: 1rem;
}

.locations-section {
    padding: 5rem 2rem;
    background-color: var(--gray-100);
}

.locations-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.locations-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.location-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.location-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.location-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--gray-600);
    font-style: italic;
}

.faq-contact-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.faq-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.contact-cta-section {
    padding: 5rem 2rem;
    background-color: var(--gray-100);
    text-align: center;
}

.contact-methods {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.directions-note {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.directions-list {
    margin-top: 2rem;
}

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

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

.legal-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-content table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.legal-content table th,
.legal-content table td {
    padding: 1rem;
    border: 1px solid var(--gray-200);
    text-align: left;
}

.legal-content table th {
    background-color: var(--gray-100);
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background-color: #ffffff;
}

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

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

.thanks-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 5rem 2rem;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.thanks-details {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.thanks-details h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.7;
}

.thanks-course-info {
    background-color: var(--gray-100);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.thanks-course-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.course-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.course-price {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.thanks-cta {
    margin: 3rem 0;
    text-align: center;
}

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

.thanks-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.thanks-contact {
    text-align: center;
    margin: 3rem 0;
}

.thanks-contact h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-proof-mini {
    background-color: var(--gray-100);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
    border-left: 4px solid var(--accent-color);
}

.social-proof-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.social-proof-author {
    font-weight: 600;
    color: var(--secondary-color);
}

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

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .split-content.reverse {
        flex-direction: column;
    }

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

    .trust-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

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

    .course-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .course-info-grid {
        flex-direction: column;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .financing-options {
        flex-direction: column;
    }

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

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .stats-showcase {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .timeline-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .final-cta-buttons,
    .cta-buttons,
    .thanks-cta-buttons,
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .section-title-center,
    .hero-title,
    .page-header h1 {
        font-size: 2rem;
    }

    .enrollment-form {
        padding: 2rem 1.5rem;
    }
}