/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1E293B;
    background-color: #ffffff;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: #facc15;
    color: #000000;
}

.btn-primary:hover {
    background-color: #fde047;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #1e3a8a;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #1e40af;
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    transition: transform 0.2s ease;
    object-fit: contain;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Brand Text (fallback) */
.brand-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.brand-text:hover {
    color: #facc15;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.nav-brand .brand-text {
    font-size: 24px;
    font-weight: bold;
    color: #1e3a8a;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    color: #1E293B;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 0.5rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #1e3a8a;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #1E293B;
}

/* Page Header */
.page-header {
    background-color: #f8fafc;
    padding: 80px 0;
}

.page-title {
    font-size: 48px;
    font-weight: bold;
    color: #1E293B;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 32px;
}

.page-contact {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

/* Search */
.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 12px 16px;
    transition: border-color 0.2s ease;
}

.search-box:focus-within {
    border-color: #3b82f6;
}

.search-box i {
    color: #64748b;
    margin-right: 12px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    padding: 80px 0;
}

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

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-highlight {
    color: #facc15;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 32px;
    color: #dbeafe;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
}

.contact-item a:hover {
    color: #facc15;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.features {
    background-color: #f8fafc;
}

.popular-courses {
    background-color: #ffffff;
}

.testimonials {
    background-color: #f8fafc;
}

.cta {
    background-color: #1e3a8a;
    color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #1E293B;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: #64748b;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feat.course-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    position: relative;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: #1e3a8a;
    color: #facc15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 12px;
}

.feature-description {
    color: #64748b;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
    justify-items: stretch;
    align-items: stretch;
}

.course-card {
    background-color: #ffffff;
    border: 2px solid #3b82f6;
    border-radius: 1rem;
    padding: 24px;
    transition: transform 0.2s ease;
    cursor: pointer;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

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

.course-header {
    background-color: #1e3a8a;
    color: #facc15;
    padding: 16px;
    margin: -24px -24px 16px -24px;
    border-radius: 1rem 1rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.course-category {
    font-size: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
}

.course-description {
    color: #64748b;
    margin-bottom: 16px;
    flex-grow: 1;
}

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

.course-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #64748b;
}

.info-item i {
    width: 16px;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #64748b;
    font-size: 14px;
}

.course-rating i {
    color: #facc15;
}

.course-price {
    font-size: 24px;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.course-contact {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.course-contact .contact-item {
    font-size: 14px;
    color: #64748b;
}

.course-contact .contact-item a {
    color: #64748b;
}

.course-contact .contact-item a:hover {
    color: #1e3a8a;
}

.course-btn {
    width: 100%;
}

/* Login Page */
.login-section {
    background-color: #f8fafc;
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.login-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.login-main {
    min-width: 0;
}

.login-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 40px;
}

.login-title {
    font-size: 32px;
    font-weight: bold;
    color: #1E293B;
    margin-bottom: 8px;
}

.login-subtitle {
    color: #64748b;
    margin-bottom: 32px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 16px;
    color: #64748b;
    z-index: 1;
}

.input-group .form-input {
    padding-left: 48px;
    padding-right: 48px;
}

.password-toggle {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    z-index: 1;
}

.password-toggle:hover {
    color: #1e3a8a;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.forgot-password {
    color: #1e3a8a;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #e2e8f0;
}

.login-divider span {
    padding: 0 16px;
    color: #64748b;
    font-size: 14px;
}

.btn-google {
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    color: #1E293B;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-google:hover {
    background-color: #f8fafc;
    border-color: #d1d5db;
}

.signup-link {
    text-align: center;
    margin-top: 24px;
}

.signup-link p {
    color: #64748b;
    font-size: 14px;
}

.signup-link a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Locations List */
.locations-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.location-item i {
    color: #1e3a8a;
    margin-top: 4px;
}

.location-item strong {
    color: #1E293B;
    font-size: 14px;
}

.location-item p {
    color: #64748b;
    font-size: 12px;
    margin: 4px 0 0 0;
}

/* Responsive Login */
@media (max-width: 768px) {
    .login-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-card {
        padding: 32px 24px;
    }
    
    .login-title {
        font-size: 28px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 40px 0;
    }
    
    .login-card {
        padding: 24px 16px;
    }
    
    .login-title {
        font-size: 24px;
    }
    
    .btn-google {
        font-size: 14px;
    }
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-number {
    width: 32px;
    height: 32px;
    background-color: #1e3a8a;
    color: #facc15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 2px;
}

.step-content p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* Process Card */
.process-card {
    background-color: #dbeafe;
    border: 2px solid #3b82f6;
}

.process-card .sidebar-title {
    color: #1e3a8a;
}

/* Enrollment Section */
.enrollment-section {
    background-color: #f8fafc;
    padding: 60px 0;
}

.enrollment-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.enrollment-main {
    min-width: 0;
}

.form-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 32px;
}

.form-title {
    font-size: 24px;
    font-weight: bold;
    color: #1E293B;
    margin-bottom: 32px;
}

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

.form-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section-title i {
    color: #1e3a8a;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.form-input,
.form-select {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-select {
    background-color: #ffffff;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox {
    margin-top: 4px;
}

.checkbox-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.form-link {
    color: #1e3a8a;
    text-decoration: none;
}

.form-link:hover {
    text-decoration: underline;
}

.btn-full-width {
    width: 100%;
}

/* Pricing Display */
.pricing-display {
    background-color: #fef3c7;
    border: 2px solid #facc15;
    border-radius: 0.5rem;
    padding: 16px;
}

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

.pricing-label {
    font-weight: 600;
    color: #1E293B;
}

.pricing-amount {
    font-size: 24px;
    font-weight: bold;
    color: #1e3a8a;
}

/* Sidebar */
.enrollment-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 24px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 16px;
}

.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

.text-green {
    color: #10b981;
}

/* Security Card */
.security-card {
    background-color: #1e3a8a;
    color: #ffffff;
    text-align: center;
}

.security-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.security-icon {
    font-size: 48px;
    color: #facc15;
}

.security-title {
    font-size: 18px;
    font-weight: 600;
    color: #facc15;
}

.security-text {
    color: #dbeafe;
    font-size: 14px;
}

/* Bottom Contact */
.bottom-contact {
    background-color: #ffffff;
    padding: 60px 0;
}

.contact-banner {
    background-color: #f3f4f6;
    border-radius: 1rem;
    padding: 32px;
    text-align: center;
}

.contact-banner-text {
    font-size: 18px;
    color: #1E293B;
    margin-bottom: 24px;
}

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

/* Contact Page Styles */
.contact-section {
    background-color: #f8fafc;
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-main {
    min-width: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-subtitle {
    color: #64748b;
    margin-bottom: 24px;
    font-size: 16px;
}

/* Contact Info Large */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item-large {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: #1e3a8a;
    color: #facc15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 4px;
}

.contact-details a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Office Hours */
.office-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.hours-day {
    font-weight: 600;
    color: #1E293B;
}

.hours-time {
    color: #64748b;
    font-size: 14px;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.faq-question {
    font-size: 14px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 8px;
    cursor: pointer;
}

.faq-answer {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #1e3a8a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.social-link:hover {
    background-color: #1e40af;
}

/* Emergency Contact */
.emergency-contact {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 60px 0;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.emergency-icon {
    font-size: 64px;
    color: #facc15;
}

.emergency-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
}

.emergency-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
    color: #dbeafe;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .emergency-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .emergency-icon {
        font-size: 48px;
    }
    
    .emergency-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-item-large {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .emergency-contact {
        padding: 40px 0;
    }
}

/* Course Detail Pages */
.course-header-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    padding: 80px 0;
}

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

.course-breadcrumb {
    margin-bottom: 24px;
    font-size: 14px;
}

.course-breadcrumb a {
    color: #dbeafe;
    text-decoration: none;
}

.course-breadcrumb a:hover {
    color: #facc15;
}

.course-main-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
}

.course-main-description {
    font-size: 20px;
    margin-bottom: 32px;
    color: #dbeafe;
    line-height: 1.6;
}

.course-meta-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.meta-item i {
    color: #facc15;
}

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

.course-content-section {
    background-color: #f8fafc;
    padding: 60px 0;
}

.course-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.course-main-content {
    min-width: 0;
}

.content-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 32px;
    margin-bottom: 24px;
}

.content-title {
    font-size: 24px;
    font-weight: bold;
    color: #1E293B;
    margin-bottom: 16px;
}

.content-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    margin: 24px 0 12px 0;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.feature-list li {
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Curriculum Modules */
.curriculum-modules {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.module {
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 20px;
    transition: border-color 0.2s ease;
}

.module:hover {
    border-color: #1e3a8a;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.module-title {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
}

.module-duration {
    background-color: #1e3a8a;
    color: #facc15;
    padding: 4px 12px;
    border-radius: 1rem;
    font-size: 12px;
    font-weight: 600;
}

.module-topics {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.module-topics li {
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: #64748b;
}

.module-topics li:before {
    content: "•";
    color: #1e3a8a;
    position: absolute;
    left: 0;
    top: 0;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background-color: #f8fafc;
    border-radius: 0.5rem;
}

.requirement-item i {
    font-size: 20px;
    margin-top: 2px;
}

.requirement-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 4px;
}

.requirement-item p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Course Sidebar */
.course-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.enrollment-card {
    background-color: #1e3a8a;
    color: #ffffff;
    border-radius: 1rem;
    padding: 32px;
    text-align: center;
}

.enrollment-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
}

.enrollment-subtitle {
    margin-bottom: 24px;
    color: #dbeafe;
}

.enrollment-info {
    margin-bottom: 24px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #dbeafe;
}

.info-value {
    font-weight: 600;
}

.contact-info {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-info p {
    margin-bottom: 12px;
    color: #dbeafe;
}

.contact-info .contact-item {
    color: #ffffff;
    font-size: 14px;
}

/* Instructor Card */
.instructor-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 24px;
}

.instructor-title {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 16px;
}

.instructor-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.instructor-avatar {
    width: 60px;
    height: 60px;
    background-color: #1e3a8a;
    color: #facc15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.instructor-name {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 4px;
}

.instructor-role {
    font-size: 14px;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.instructor-bio {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Features Card */
.features-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 24px;
}

.features-title {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 16px;
}

.features-card .features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-card .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #64748b;
}

.features-card .feature-item i {
    color: #1e3a8a;
    width: 20px;
}

/* Related Courses */
.related-courses {
    background-color: #ffffff;
    padding: 60px 0;
}

.related-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 32px;
}

.related-course-card {
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s ease;
}

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

.related-course-title {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 8px;
}

.related-course-desc {
    color: #64748b;
    margin-bottom: 16px;
}

/* Responsive Course Detail */
@media (max-width: 768px) {
    .course-main-title {
        font-size: 36px;
    }
    
    .course-main-description {
        font-size: 18px;
    }
    
    .course-meta-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .course-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .related-courses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .course-header-section {
        padding: 60px 0;
    }
    
    .course-main-title {
        font-size: 28px;
    }
    
    .content-card {
        padding: 24px 16px;
    }
    
    .module-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Legal Pages */
.legal-section {
    background-color: #f8fafc;
    padding: 60px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 48px;
}

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

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-title {
    font-size: 24px;
    font-weight: bold;
    color: #1E293B;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-title i {
    color: #1e3a8a;
    font-size: 20px;
}

.legal-text {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-text p {
    margin-bottom: 16px;
}

.legal-text p:last-child {
    margin-bottom: 0;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.legal-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.legal-list li:before {
    content: "•";
    color: #1e3a8a;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.legal-numbered {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
    counter-reset: legal-counter;
}

.legal-numbered li {
    margin-bottom: 16px;
    padding-left: 36px;
    position: relative;
    counter-increment: legal-counter;
}

.legal-numbered li:before {
    content: counter(legal-counter) ".";
    color: #1e3a8a;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.legal-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    margin: 24px 0 12px 0;
}

.legal-notice {
    background-color: #fef3c7;
    border: 2px solid #facc15;
    border-radius: 0.5rem;
    padding: 16px;
    margin: 16px 0;
}

.legal-notice p {
    margin: 0;
}

/* Policy Banner */
.policy-banner {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 48px 0;
}

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

.policy-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 16px;
}

.policy-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    color: #dbeafe;
}

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

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

.stat-item i {
    font-size: 48px;
    color: #facc15;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #facc15;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #dbeafe;
}

/* Legal Contact */
.legal-contact {
    background-color: #dbeafe;
    border: 2px solid #3b82f6;
    border-radius: 1rem;
    padding: 32px;
    margin-top: 48px;
    text-align: center;
}

.legal-contact-title {
    font-size: 20px;
    font-weight: bold;
    color: #1E293B;
    margin-bottom: 16px;
}

.legal-contact-text {
    color: #374151;
    margin-bottom: 24px;
    font-size: 16px;
}

.legal-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.legal-contact-info .contact-item {
    color: #1E293B;
    font-size: 16px;
}

/* Highlight Sections */
.legal-highlight {
    background-color: #fef2f2;
    border: 2px solid #ef4444;
    border-radius: 1rem;
    padding: 32px;
    margin: 24px 0;
}

.highlight-title {
    font-size: 20px;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-title i {
    color: #dc2626;
    font-size: 20px;
}

/* Timeline Grid */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.timeline-label {
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 8px;
    font-size: 14px;
}

.timeline-time {
    font-size: 18px;
    font-weight: bold;
    color: #1e3a8a;
}

/* Related Links */
.related-links {
    background-color: #ffffff;
    padding: 60px 0;
}

.related-title {
    font-size: 24px;
    font-weight: bold;
    color: #1E293B;
    margin-bottom: 24px;
}

.related-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Legal */
@media (max-width: 768px) {
    .legal-content {
        padding: 24px;
        margin: 0 16px;
    }
    
    .legal-title {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .policy-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .related-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-contact-info {
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .legal-section {
        padding: 40px 0;
    }
    
    .legal-content {
        padding: 16px;
        margin: 0 8px;
    }
    
    .legal-title {
        font-size: 18px;
    }
    
    .policy-title {
        font-size: 24px;
    }
    
    .stat-item i {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results i {
    margin-bottom: 16px;
}

/* Courses Section */
.courses-section {
    background-color: #f8fafc;
    padding: 60px 0;
}

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

.cta-section {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 60px 0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial-rating {
    color: #facc15;
    margin-bottom: 16px;
}

.testimonial-text {
    color: #64748b;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.author-name {
    font-weight: 600;
    color: #1E293B;
}

.author-role {
    color: #64748b;
    font-size: 14px;
}

/* CTA Section */
.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    color: #dbeafe;
}

.cta-contact {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: #1E293B;
    color: #ffffff;
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 48px;
}

.footer-section h3,
.footer-section h4 {
    color: #facc15;
    margin-bottom: 16px;
}

.footer-title {
    font-size: 24px;
    font-weight: bold;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
}

.footer-description {
    color: #cbd5e1;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact .contact-item {
    color: #cbd5e1;
    font-size: 14px;
}

.footer-contact .contact-item a {
    color: #cbd5e1;
}

.footer-contact .contact-item a:hover {
    color: #facc15;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #facc15;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #facc15;
}

/* Desktop Courses Grid */
@media (min-width: 769px) {
    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background-color: #ffffff;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 4px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-sub.page-title {
        font-size: 36px;
    }

    .page-contact {
        flex-direction: column;
        gap: 1rem;
    }

    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .enrollment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-banner-links {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-title {
        font-size: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    section {
        padding: 60px 0;
    }

    .features-grid,
    .courses-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-contact,
    .cta-contact {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Text Centering Helper */
.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 2rem;
}

/* Animation Classes */
.card-hover {
    transition: transform 0.2s ease;
}

/* Attribution Footer */
.attribution-footer {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #2c5282;
}

.attribution-text {
    font-size: 14px;
    color: #cbd5e1;
}

.attribution-text a {
    color: #facc15;
    text-decoration: none;
    transition: color 0.2s ease;
}

.attribution-text a:hover {
    color: #ffffff;
}

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