:root {
    --color-primary: #1a365d;
    --color-primary-light: #2c5282;
    --color-primary-dark: #102a4c;
    --color-secondary: #38a169;
    --color-secondary-light: #48bb78;
    --color-accent: #ed8936;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-text-inverse: #ffffff;
    --color-background: #ffffff;
    --color-background-alt: #f7fafc;
    --color-background-dark: #1a202c;
    --color-border: #e2e8f0;
    --color-border-dark: #cbd5e0;
    --color-success: #38a169;
    --color-error: #e53e3e;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-primary-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-light);
}

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

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

address {
    font-style: normal;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

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

.brand .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.brand .logo:hover {
    color: var(--color-primary-dark);
}

.main-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.ad-disclosure {
    background-color: var(--color-background-alt);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--color-text-light);
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition-fast);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-container.narrow {
    max-width: 800px;
}

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

.section-header.centered {
    text-align: center;
}

.section-header.left-aligned {
    text-align: left;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.125rem;
    margin-bottom: 0;
}

.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    opacity: 0.9;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 4rem 2rem;
    color: var(--color-text-inverse);
}

.hero-content h1 {
    color: var(--color-text-inverse);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.page-hero {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.page-hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-hero .hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    opacity: 0.95;
}

.page-hero .hero-content {
    padding: 0 2rem;
}

.page-hero h1 {
    color: var(--color-text-inverse);
    margin-bottom: 0.75rem;
}

.page-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.page-hero.compact {
    padding: 4rem 0;
    background-color: var(--color-primary);
}

.page-hero.compact h1 {
    color: var(--color-text-inverse);
}

.page-hero.compact .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cta-button.primary {
    background-color: var(--color-secondary);
    color: var(--color-text-inverse);
    border-color: var(--color-secondary);
}

.cta-button.primary:hover {
    background-color: var(--color-secondary-light);
    border-color: var(--color-secondary-light);
    color: var(--color-text-inverse);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.cta-button.secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
}

.cta-button.full-width {
    width: 100%;
}

.text-link {
    color: var(--color-primary);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast);
}

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

.intro-section {
    padding: 5rem 0;
    background-color: var(--color-background);
}

.intro-card-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--color-background-alt);
    border-radius: var(--radius-lg);
    text-align: center;
}

.card-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.intro-card h3 {
    margin-bottom: 1rem;
}

.intro-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.featured-courses {
    padding: 5rem 0;
    background-color: var(--color-background-alt);
}

.course-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.course-feature-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.course-image-wrapper {
    flex: 0 0 45%;
    min-height: 300px;
    position: relative;
}

.course-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.course-details {
    flex: 1;
    padding: 2.5rem;
}

.course-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.course-badge.youth {
    background-color: var(--color-accent);
}

.course-details h3 {
    margin-bottom: 1rem;
}

.course-details p {
    color: var(--color-text-light);
}

.course-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.course-meta .duration {
    color: var(--color-text-light);
}

.course-meta .price {
    font-weight: 700;
    color: var(--color-secondary);
}

.stats-section {
    position: relative;
    padding: 5rem 0;
}

.stats-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.stats-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.stats-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.stats-overlay {
    position: relative;
    color: var(--color-text-inverse);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.testimonials-section {
    padding: 5rem 0;
    background-color: var(--color-background);
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: var(--color-background-alt);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-secondary);
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.testimonial-author cite {
    font-style: normal;
    font-weight: 500;
    color: var(--color-text-light);
}

.cta-section {
    padding: 5rem 0;
    background-color: var(--color-background-alt);
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
    background-color: var(--color-primary);
    border-radius: var(--radius-lg);
    color: var(--color-text-inverse);
}

.cta-card h2 {
    color: var(--color-text-inverse);
    margin-bottom: 0.5rem;
}

.cta-card p {
    opacity: 0.9;
    margin-bottom: 0;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cta-card .cta-button.secondary {
    color: var(--color-text-inverse);
    border-color: var(--color-text-inverse);
}

.cta-card .cta-button.secondary:hover {
    background-color: var(--color-text-inverse);
    color: var(--color-primary);
}

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

.centered-cta .cta-content {
    margin-bottom: 1.5rem;
}

.enroll-section {
    padding: 5rem 0;
    background-color: var(--color-background);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.enrollment-form {
    background-color: var(--color-background-alt);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: var(--font-primary);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-md);
    background-color: var(--color-background);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.enroll-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.enroll-info {
    flex: 1;
}

.enroll-info h2 {
    margin-bottom: 1rem;
}

.enroll-benefits {
    margin-top: 2rem;
}

.enroll-benefits h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.enroll-benefits ol {
    padding-left: 1.25rem;
}

.enroll-form-wrapper {
    flex: 1;
    max-width: 500px;
}

.courses-section {
    padding: 4rem 0 5rem;
}

.courses-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.course-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 350px;
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.course-card-image {
    position: relative;
    height: 200px;
}

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

.course-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.course-category.youth {
    background-color: var(--color-accent);
}

.course-category.business {
    background-color: var(--color-secondary);
}

.course-card-content {
    padding: 1.5rem;
}

.course-card-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.course-card-content > p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.course-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.course-highlights li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.course-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

.course-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    margin-bottom: 1rem;
}

.course-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.course-info .duration,
.course-info .schedule {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.course-price .price-amount {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.enroll-link {
    display: inline-block;
    font-weight: 600;
    color: var(--color-primary);
}

.course-filter-section {
    padding: 2rem 0 0;
    background-color: var(--color-background-alt);
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-tab.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-inverse);
}

.faq-section {
    padding: 5rem 0;
    background-color: var(--color-background-alt);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--color-background);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform var(--transition-fast);
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-light);
}

.faq-answer p {
    margin-bottom: 0;
}

.about-intro {
    padding: 5rem 0;
}

.prose-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 5rem 0;
    background-color: var(--color-background-alt);
}

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

.value-card {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.value-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--color-background-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.team-image {
    height: 300px;
    overflow: hidden;
}

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

.team-details {
    padding: 1.5rem;
}

.team-details h3 {
    margin-bottom: 0.25rem;
}

.team-role {
    display: block;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-details p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.approach-section {
    padding: 5rem 0;
    background-color: var(--color-background-alt);
}

.approach-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    margin-bottom: 1.5rem;
}

.approach-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.approach-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.approach-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

.approach-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 500px;
}

.approach-image img {
    width: 100%;
    height: auto;
}

.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info-block {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    padding: 2rem;
    background-color: var(--color-background-alt);
    border-radius: var(--radius-lg);
}

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

.info-card h3 {
    margin-bottom: 1rem;
}

.contact-address p {
    margin-bottom: 0.25rem;
}

.address-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.email-display {
    color: var(--color-text);
    font-weight: 500;
}

.email-display.prominent {
    font-size: 1.125rem;
    color: var(--color-primary);
}

.response-time {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.contact-content-block {
    flex: 1;
}

.content-card {
    margin-bottom: 2rem;
}

.content-card h2 {
    margin-bottom: 1rem;
}

.content-card h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.map-placeholder {
    height: 300px;
    background-color: var(--color-background-alt);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--color-border-dark);
}

.map-overlay p {
    color: var(--color-text-light);
    font-weight: 500;
}

.faq-contact-section {
    padding: 5rem 0;
    background-color: var(--color-background-alt);
}

.thanks-section {
    padding: 5rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: var(--color-background-alt);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.thanks-card h1 {
    margin-bottom: 1rem;
}

.thanks-greeting {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.thanks-message {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

.next-steps {
    text-align: left;
    background-color: var(--color-background);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.steps-list li:last-child {
    margin-bottom: 0;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-text {
    color: var(--color-text);
}

.thanks-contact {
    margin-bottom: 2rem;
}

.thanks-contact p {
    margin-bottom: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 4rem 0;
}

.legal-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-header h1 {
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.legal-content {
    line-height: 1.8;
}

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

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.legal-section h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 1rem;
}

.legal-contact {
    background-color: var(--color-background-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

.legal-contact p {
    margin-bottom: 0.25rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid var(--color-border);
}

.cookie-table th {
    background-color: var(--color-background-alt);
    font-weight: 600;
}

.cookie-table td {
    background-color: var(--color-background);
}

.site-footer {
    background-color: var(--color-background-dark);
    color: var(--color-text-inverse);
    padding: 4rem 0 2rem;
}

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

.footer-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-section.brand-section {
    flex: 2;
    min-width: 280px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-inverse);
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--color-text-inverse);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-text-inverse);
}

.footer-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-address p {
    margin-bottom: 0.25rem;
}

.footer-address .email-display {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-background-dark);
    color: var(--color-text-inverse);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin-bottom: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cookie-btn.accept {
    background-color: var(--color-secondary);
    color: var(--color-text-inverse);
}

.cookie-btn.accept:hover {
    background-color: var(--color-secondary-light);
}

.cookie-btn.reject {
    background-color: transparent;
    color: var(--color-text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.reject:hover {
    border-color: var(--color-text-inverse);
}

.cookie-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--color-text-inverse);
}

@media (max-width: 1024px) {
    .course-feature-card,
    .course-feature-card.reverse {
        flex-direction: column;
    }

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

    .approach-split {
        flex-direction: column;
    }

    .approach-image {
        max-width: 100%;
    }

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

    .contact-info-block {
        flex: none;
        width: 100%;
    }

    .enroll-split {
        flex-direction: column;
    }

    .enroll-form-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
        order: 3;
        width: 100%;
        padding-top: 1rem;
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--color-border);
    }

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

    .ad-disclosure {
        order: 2;
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

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

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

    .intro-card-grid {
        flex-direction: column;
    }

    .intro-card {
        min-width: 100%;
    }

    .course-card {
        flex: 1 1 100%;
        min-width: 100%;
    }

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

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

    .cta-button {
        width: 100%;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

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

    .testimonial-card {
        min-width: 100%;
    }

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

    .value-card {
        min-width: 100%;
    }

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

    .team-card {
        min-width: 100%;
    }

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

    .footer-section {
        min-width: 100%;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .thanks-card {
        padding: 2rem 1.5rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 3rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .enrollment-form {
        padding: 1.5rem;
    }

    .filter-tabs {
        gap: 0.5rem;
    }

    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .course-card-content {
        padding: 1.25rem;
    }

    .course-price .price-amount {
        font-size: 1.25rem;
    }
}
