:root {
    /* Brand Colors */
    --brand-purple: #8a2be2;
    --brand-purple-light: #9d4edd;
    --brand-purple-dark: #6a0dad;
    --brand-pink: #ff00ff;
    --brand-cyan: #00bfff;
    
    --brand-yellow: #fdb400;
    --brand-yellow-light: #ffd166;
    --brand-blue: #03156d;
    --brand-blue-light: #0a2a9c;
    --brand-blue-dark: #010a35;
    
    /* Light Theme Default (Blue/Yellow) */
    --text-color: #222;
    --text-light: #6b7280;
    --bg-gray: #f5f7fa;
    --bg-white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --border-radius: 16px;
    --transition: all 0.3s ease;
    
    /* Component Colors - Light Theme (Blue/Yellow) */
    --primary: var(--brand-blue);
    --secondary: var(--brand-yellow);
    --accent: var(--brand-blue-light);
    --dark: var(--brand-blue-dark);
    --darker: #010a35;
    --light: var(--bg-white);
    --card-bg: var(--bg-white);
    --glow: 0 0 15px rgba(3, 21, 109, 0.3);
    --glow-secondary: 0 0 15px rgba(253, 180, 0, 0.4);
    
    /* Theme Toggle Variables */
    --header-bg: rgba(255, 255, 255, 0.95);
    --header-scrolled-bg: rgba(255, 255, 255, 0.98);
    --nav-bg: rgba(255, 255, 255, 0.98);
    --body-bg: linear-gradient(135deg, var(--darker), var(--dark));
    --hero-bg: var(--bg-gray);
    --section-bg: var(--bg-white);
    --section-alt-bg: var(--bg-gray);
    --card-border: rgba(3, 21, 109, 0.1);
    --text-primary: var(--brand-blue);
    --text-secondary: var(--text-color);
    --text-muted: var(--text-light);
}

/* Dark Theme (Original Purple) */
[data-theme="dark"] {
    --text-color: #f0f0ff;
    --text-light: #a0a0ff;
    --bg-gray: #0a0a1a;
    --bg-white: #050510;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
    
    /* Original Purple Theme Colors */
    --primary: var(--brand-purple);
    --secondary: var(--brand-pink);
    --accent: var(--brand-cyan);
    --dark: #0a0a1a;
    --darker: #050510;
    --light: #f0f0ff;
    --card-bg: rgba(20, 20, 40, 0.7);
    --glow: 0 0 15px rgba(138, 43, 226, 0.7);
    --glow-secondary: 0 0 15px rgba(255, 0, 255, 0.7);
    
    /* Theme Toggle Variables */
    --header-bg: rgba(10, 10, 26, 0.95);
    --header-scrolled-bg: rgba(10, 10, 26, 0.95);
    --nav-bg: rgba(10, 10, 26, 0.98);
    --body-bg: linear-gradient(135deg, var(--darker), var(--dark));
    --hero-bg: var(--darker);
    --section-bg: rgba(20, 20, 40, 0.7);
    --section-alt-bg: rgba(10, 10, 26, 0.7);
    --card-border: rgba(138, 43, 226, 0.3);
    --text-primary: var(--brand-purple);
    --text-secondary: #f0f0ff;
    --text-muted: #a0a0ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: var(--body-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    transition: var(--transition);
}

.grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(3, 21, 109, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(3, 21, 109, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

[data-theme="dark"] .grid-pattern {
    background-image:
        linear-gradient(rgba(138, 43, 226, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 43, 226, 0.1) 1px, transparent 1px);
}


@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Theme Toggle Switch */
.theme-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.theme-toggle-label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--card-bg);
    border-radius: 50px;
    border: 2px solid var(--card-border);
    cursor: pointer;
    transition: var(--transition);
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: var(--brand-yellow);
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

[data-theme="dark"] .toggle-slider {
    transform: translateX(30px);
    background: var(--brand-blue-light);
}

.toggle-slider::before {
    content: '☀️';
}

[data-theme="dark"] .toggle-slider::before {
    content: '🌙';
}

/* Header Styles */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    background: var(--header-bg);
    backdrop-filter: blur(10px);
}

header.scrolled {
    background: var(--header-scrolled-bg);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    text-decoration: none;
}

[data-theme="dark"] .logo {
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-light));
    -webkit-background-clip: text;
    background-clip: text;
}

/* Login Icon - Desktop Position */
.login-icon {
    color: var(--text-color);
    font-size: 1.6rem;
    margin-left: 20px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-icon:hover {
    color: var(--brand-yellow);
}

[data-theme="dark"] .login-icon:hover {
    color: var(--brand-blue-light);
}

/* Close Icon (mobile menu) */
.close-icon {
    display: none;
    text-align: right;
    padding: 10px 20px;
}

.close-icon button {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

nav ul li a:hover {
    color: var(--brand-yellow);
}

[data-theme="dark"] nav ul li a:hover {
    color: var(--brand-blue-light);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-yellow));
    transition: width 0.3s ease;
}

[data-theme="dark"] nav ul li a::after {
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-blue-light));
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--hero-bg);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-yellow), var(--brand-blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textGlow 3s ease-in-out infinite alternate;
}

[data-theme="dark"] .hero h1 {
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-blue-light), var(--brand-yellow-light));
    -webkit-background-clip: text;
    background-clip: text;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(3, 21, 109, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(253, 180, 0, 0.4), 0 0 30px rgba(10, 42, 156, 0.3);
    }
}

[data-theme="dark"] @keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(253, 180, 0, 0.4);
    }
    100% {
        text-shadow: 0 0 20px rgba(10, 42, 156, 0.4), 0 0 30px rgba(253, 180, 0, 0.3);
    }
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-muted);
}

.hero-badge {
    display: inline-block;
    background: var(--card-bg);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    color: var(--text-primary);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-light));
    color: white;
    border: none;
    box-shadow: var(--shadow);
}

[data-theme="dark"] .btn-primary {
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-light));
    color: var(--brand-blue-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--brand-blue-light), var(--brand-blue));
}

[data-theme="dark"] .btn-primary:hover {
    background: linear-gradient(90deg, var(--brand-yellow-light), var(--brand-yellow));
}

.btn-secondary:hover {
    background: rgba(3, 21, 109, 0.1);
}

[data-theme="dark"] .btn-secondary:hover {
    background: rgba(253, 180, 0, 0.1);
}

/* Car Selection Section */
.car-selection {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}

.car-fullwidth {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.car-fullwidth img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Program Overview */
.program-overview {
    padding: 80px 0;
    background: var(--section-bg);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.overview-image {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.rotating-card {
    width: 300px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3d 20s infinite linear;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

@keyframes rotate3d {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.rotating-card .front,
.rotating-card .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    text-align: center;
}

.rotating-card .front {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
}

.rotating-card .back {
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-yellow-light));
    transform: rotateY(180deg);
}
/* Program Overview */
.program-overview {
    padding: 80px 0;
    background: var(--bg-white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.overview-image {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.rotating-card {
    width: 300px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3d 20s infinite linear;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

@keyframes rotate3d {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.rotating-card .front,
.rotating-card .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    text-align: center;
}



.rotating-card .front img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}



.rotating-card .back img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Features Grid */
.features {
    padding: 80px 0;
    background: var(--section-alt-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 21, 109, 0.05), rgba(253, 180, 0, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

[data-theme="dark"] .feature-card::before {
    background: linear-gradient(135deg, rgba(253, 180, 0, 0.05), rgba(10, 42, 156, 0.05));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

[data-theme="dark"] .feature-icon {
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-blue-light));
    -webkit-background-clip: text;
    background-clip: text;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-muted);
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--brand-blue-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

[data-theme="dark"] .read-more {
    color: var(--brand-yellow-light);
}

.read-more:hover {
    color: var(--brand-yellow);
}

[data-theme="dark"] .read-more:hover {
    color: var(--brand-blue-light);
}

/* Who Should Apply */
.apply-section {
    padding: 80px 0;
    background: var(--section-bg);
}

.apply-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.apply-list,
.included-list {
    list-style: none;
}

.apply-list li,
.included-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}

.apply-list li::before,
.included-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-weight: bold;
}

[data-theme="dark"] .apply-list li::before {
    color: var(--brand-yellow);
}

.included-list li::before {
    color: var(--brand-yellow);
}

[data-theme="dark"] .included-list li::before {
    color: var(--brand-blue-light);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 20px;
    background: var(--section-alt-bg);
}

.why-choose-us .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1 1 400px;
    max-width: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.feature-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(3, 21, 109, 0.2);
}

[data-theme="dark"] .feature-image:hover {
    box-shadow: 0 15px 40px rgba(253, 180, 0, 0.2);
}

.feature-content {
    flex: 1 1 400px;
    max-width: 600px;
}

.feature-content h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: bold;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Icon with headline style */
.feature-content .feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-yellow));
    -webkit-background-clip: text;
    color: transparent;
}

[data-theme="dark"] .feature-content .feature-icon {
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-blue-light));
    -webkit-background-clip: text;
    color: transparent;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--section-alt-bg);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--brand-yellow);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-light));
    color: var(--brand-blue);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

[data-theme="dark"] .pricing-card.popular::before {
    background: linear-gradient(90deg, var(--brand-blue-light), var(--brand-blue));
    color: white;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

[data-theme="dark"] .price {
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-blue-light));
    -webkit-background-clip: text;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-weight: bold;
}

[data-theme="dark"] .pricing-features li::before {
    color: var(--brand-yellow);
}

/* Curriculum Section */
.curriculum {
    padding: 100px 20px;
    background: var(--section-bg);
}

.section-title {
    text-align: center;
    font-size: 2.6rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-description {
    text-align: center;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.curriculum-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 12px 30px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-light));
    color: white;
    box-shadow: var(--shadow);
    transform: scale(1.05);
}

[data-theme="dark"] .filter-btn.active,
[data-theme="dark"] .filter-btn:hover {
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-light));
    color: var(--brand-blue-dark);
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 50px;
}

.curriculum-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    opacity: 0.4;
    transition: all 0.6s ease;
    box-shadow: var(--shadow);
    border: 1px solid var(--card-border);
}

.curriculum-card.active {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.curriculum-card .card-img {
    flex: 1;
    overflow: hidden;
}

.curriculum-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.curriculum-card:hover .card-img img {
    transform: scale(1.1) rotate(2deg);
}

.curriculum-card .card-content {
    flex: 1;
    padding: 30px;
}

.curriculum-card h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.curriculum-card ul {
    list-style: none;
    padding: 0;
}

.curriculum-card ul li {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}

.curriculum-card ul li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--brand-yellow);
    font-size: 1.2rem;
}

[data-theme="dark"] .curriculum-card ul li::before {
    color: var(--brand-blue-light);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--section-alt-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
    color: var(--text-primary);
}

.faq-question:hover {
    background: rgba(3, 21, 109, 0.05);
}

[data-theme="dark"] .faq-question:hover {
    background: rgba(253, 180, 0, 0.05);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Footer */
footer {
    padding: 60px 0 20px;
    background: linear-gradient(135deg, var(--darker), var(--brand-blue-dark));
    text-align: left;
    border-top: 1px solid rgba(253, 180, 0, 0.3);
    position: relative;
    overflow: hidden;
    color: white;
}

[data-theme="dark"] footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23fdb400' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--brand-yellow);
    font-size: 1.3rem;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: white;
    font-size: 1.1rem;
}

.footer-section .logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.brand-tagline {
    font-style: italic;
    color: var(--brand-yellow);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter {
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 8px 0 0 8px;
    border: 1px solid rgba(253, 180, 0, 0.5);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.newsletter-form button {
    border-radius: 0 8px 8px 0;
    padding: 12px 20px;
    white-space: nowrap;
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-light));
    color: var(--brand-blue);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: linear-gradient(90deg, var(--brand-yellow-light), var(--brand-yellow));
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.footer-links a:hover {
    color: var(--brand-yellow);
    transform: translateX(5px);
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--brand-yellow);
    margin-right: 10px;
    margin-top: 3px;
    width: 16px;
}

.contact-item span {
    color: #ccc;
    flex: 1;
}

.partner-logos {
    margin-top: 25px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.partner-logo {
    background: rgba(253, 180, 0, 0.1);
    border: 1px solid rgba(253, 180, 0, 0.3);
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
    transition: var(--transition);
}

.partner-logo:hover {
    background: rgba(253, 180, 0, 0.2);
    transform: translateY(-2px);
}

.footer-middle {
    border-top: 1px solid rgba(253, 180, 0, 0.2);
    border-bottom: 1px solid rgba(253, 180, 0, 0.2);
    padding: 30px 0;
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.footer-middle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.award-item {
    display: flex;
    align-items: center;
}

.award-item i {
    color: var(--brand-yellow);
    margin-right: 10px;
    font-size: 1.2rem;
}

.award-item span {
    color: #ccc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(253, 180, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(253, 180, 0, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(253, 180, 0, 0.3);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom {
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(253, 180, 0, 0.2);
    color: white;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-link:hover {
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-light));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 180, 0, 0.4);
}

.footer-links-bottom {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links-bottom a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-bottom a:hover {
    color: var(--brand-yellow);
}

.copyright {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(253, 180, 0, 0.3);
}

.copyright-note {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #666;
}

/* Slider container */
.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
    overflow: hidden;
    padding: 40px 0;
}

/* Carousel Track */
.slider-track {
    display: flex;
    transition: transform 1.2s ease-in-out;
    gap: 20px;
}

/* Individual Card */
.testimonial {
    flex: 0 0 40%;
    border-radius: var(--border-radius);
    background: var(--card-bg);
    padding: 30px 25px;
    color: var(--text-color);
    text-align: center;
    box-shadow: var(--shadow);
    transform: scale(0.85);
    transition: all 0.5s ease;
}

.testimonial.active {
    transform: scale(1);
    border: 2px solid var(--brand-yellow);
}

/* Card content */
.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid var(--brand-yellow);
}

.testimonial p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: var(--text-color);
}

.testimonial h4 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-primary);
}

/* Navigation dots */
.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.slider-dots span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background: var(--text-primary);
    opacity: 0.5;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots span.active {
    opacity: 1;
    background: var(--brand-yellow);
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-radius: var(--border-radius);
    max-width: 1000px;
    margin: 60px auto;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .newsletter-section {
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-yellow-light));
}

/* Bubble pattern */
.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 180, 0, 0.2) 2%, transparent 2%) repeat;
    background-size: 50px 50px;
    animation: bubbleMove 20s linear infinite;
    z-index: 0;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    z-index: 1;
    position: relative;
    background: linear-gradient(90deg, var(--brand-yellow), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .newsletter-section h2 {
    background: linear-gradient(90deg, var(--brand-blue), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter-section p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    z-index: 1;
    position: relative;
}

.newsletter-input-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.newsletter-input-container input[type="email"] {
    padding: 18px 25px;
    font-size: 1rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    width: 320px;
    max-width: 100%;
}

.newsletter-input-container input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input-container input[type="email"]:focus {
    border-color: var(--brand-yellow);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(253, 180, 0, 0.5);
}

.newsletter-input-container button {
    padding: 18px 35px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-light));
    color: var(--brand-blue);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(253, 180, 0, 0.5);
}

[data-theme="dark"] .newsletter-input-container button {
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-light));
    color: white;
    box-shadow: 0 0 15px rgba(10, 42, 156, 0.5);
}

.newsletter-input-container button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(253, 180, 0, 0.7);
}

[data-theme="dark"] .newsletter-input-container button:hover {
    box-shadow: 0 0 25px rgba(10, 42, 156, 0.7);
}



/* Responsive Styles */
@media (max-width: 992px) {
    .car-selection-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .overview-content,
    .apply-content {
        grid-template-columns: 1fr;
    }

    .overview-image {
        order: -1;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    nav ul {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--nav-bg);
        padding-top: 60px;
        transition: right 0.3s ease;
    }

    nav ul.active {
        right: 0;
    }

    .close-icon {
        display: block;
    }

    /* Move login icon near menu toggle on mobile */
    .login-icon {
        position: absolute;
        right: 60px;
        top: 22px;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    /* Theme toggle mobile adjustment */
    .theme-toggle {
        margin-left: 15px;
    }

    .theme-toggle-label {
        display: none;
    }

    /* Footer responsive */
    .footer-middle-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 8px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .curriculum-grid {
        grid-template-columns: 1fr;
    }

    .logos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-middle {
        padding: 20px 0;
        margin: 20px 0;
    }

    .newsletter-section h2 {
        font-size: 2rem;
    }

    .newsletter-section p {
        font-size: 1rem;
    }

    .newsletter-input-container {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-input-container button,
    .newsletter-input-container input[type="email"] {
        width: 100%;
        max-width: 320px;
    }

    /* Testimonial responsive */
    .testimonial {
        flex: 0 0 90%;
    }
}

@media (max-width: 900px) {
    .testimonial {
        flex: 0 0 60%;
    }

    .feature-item {
        flex-direction: column !important;
        text-align: center;
    }

    .feature-content {
        max-width: 100%;
    }

    .feature-image {
        max-width: 100%;
    }
}


.header-container {
  max-width: 6xl;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.header-subtitle {
  font-size: 0.875rem;
  opacity: 0.9;
  color: var(--text-muted);
}

/* Main Content */
main {
  max-width: 5xl;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 7.5rem; /* space-y-120 equivalent */
}

/* Contact Section */
.contact-section {
  background: var(--section-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.contact-section:hover {
  box-shadow: var(--shadow-lg);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-intro {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-details, .office-address {
  padding: 0.5rem 0;
}

.subsection-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.contact-details p, .office-address p {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.contact-details strong {
  color: var(--text-primary);
}

/* Enhanced Styling for Contact Information */
.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
}

.contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
  color: var(--primary);
}

.contact-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }
  
  .contact-section {
    padding: 1.5rem;
  }
  
  main {
    padding: 1rem;
    gap: 5rem;
  }
}

/* Animation for theme transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}


 /* Main Content */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        /* Page Header */
        .page-header {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .page-title {
            font-size: 1.875rem;
            font-weight: bold;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .page-title i {
            color: var(--primary);
        }

        .page-subtitle {
            font-size: 0.875rem;
            opacity: 0.9;
            color: var(--text-muted);
        }

        /* Terms Section */
        .terms-section {
            background: var(--section-bg);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border: 1px solid var(--card-border);
            transition: var(--transition);
        }

        .terms-section:hover {
            box-shadow: var(--shadow-lg);
        }

        .terms-intro {
            margin-bottom: 2rem;
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.7;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--card-border);
        }

        .terms-intro strong {
            color: var(--text-primary);
        }

        /* Terms Items */
        .terms-item {
            margin-bottom: 2rem;
            padding: 1.5rem;
            border-radius: 12px;
            transition: var(--transition);
            border-left: 4px solid transparent;
        }

        .terms-item:hover {
            background: rgba(0, 0, 0, 0.03);
            border-left-color: var(--primary);
        }

      
        .terms-item-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .terms-item-title i {
            color: var(--primary);
            width: 1.5rem;
            text-align: center;
        }

        .terms-item-content {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .terms-list {
            list-style-type: none;
            margin-top: 0.75rem;
        }

        .terms-list li {
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .terms-list li:before {
            content: "•";
            color: var(--primary);
            font-weight: bold;
            position: absolute;
            left: 0.5rem;
        }

        .payment-highlight {
            background: rgba(253, 180, 0, 0.1);
            border-radius: 8px;
            padding: 1rem;
            margin: 1rem 0;
            border-left: 4px solid var(--brand-yellow);
        }

        .payment-highlight strong {
            color: var(--brand-yellow);
        }

     

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .header-container {
                padding: 0 1rem;
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .terms-section {
                padding: 1.5rem;
            }
            
            main {
                padding: 1rem;
                gap: 1.5rem;
            }
            
            .terms-item {
                padding: 1rem;
            }
        }

     /* Main Content */
        main {
            max-width: 80rem; /* max-w-5xl equivalent */
            margin: 0 auto;
            padding: 1.5rem; /* p-6 equivalent */
            display: flex;
            flex-direction: column;
            gap: 2rem; /* space-y-8 equivalent */
        }

        /* Page Header */
        .page-header {
            max-width: 72rem; /* max-w-6xl equivalent */
            margin: 0 auto;
            padding: 0 1rem; /* px-4 equivalent */
        }

        .page-title {
            font-size: 1.5rem; /* text-2xl equivalent */
            font-weight: bold;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .page-subtitle {
            font-size: 0.875rem; /* text-sm equivalent */
            opacity: 0.9;
            color: var(--text-muted);
        }

        /* Refund Section */
        .refund-section {
            background: var(--section-bg);
            padding: 2rem; /* p-8 equivalent */
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border: 1px solid var(--card-border);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            gap: 1.5rem; /* space-y-6 equivalent */
        }

        .refund-section:hover {
            box-shadow: var(--shadow-lg);
        }

        .refund-section p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .refund-section strong {
            color: var(--text-primary);
        }

        /* Refund Items */
        .refund-item {
            margin-bottom: 0.5rem;
        }

        .refund-item-title {
            font-size: 1.125rem; /* text-lg equivalent */
            font-weight: 600; /* font-semibold equivalent */
            margin-bottom: 0.5rem; /* mb-2 equivalent */
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .refund-item-title i {
            color: var(--primary);
            width: 1.25rem;
        }

        .refund-list {
            list-style-type: disc;
            padding-left: 1.5rem; /* pl-6 equivalent */
            display: flex;
            flex-direction: column;
            gap: 0.25rem; /* space-y-1 equivalent */
        }

        .refund-list li {
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* Highlight Box */
        .highlight-box {
            background: rgba(253, 180, 0, 0.1);
            border-radius: 8px;
            padding: 1.25rem;
            margin: 0.5rem 0;
            border-left: 4px solid var(--brand-yellow);
        }

        .highlight-box strong {
            color: var(--brand-yellow);
        }

        /* Contact Info */
        .contact-info {
            background: rgba(3, 21, 109, 0.05);
            border-radius: 8px;
            padding: 1.25rem;
            margin: 0.5rem 0;
            border-left: 4px solid var(--brand-blue);
        }

       

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .header-container {
                padding: 0 1rem;
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .refund-section {
                padding: 1.5rem;
            }
            
            main {
                padding: 1rem;
                gap: 1.5rem;
            }
        }
