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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-weight: 400;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #1e4a9b;
    text-decoration: none;
}

a:hover, a:focus {
    color: #0e1f3c;
}

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

.section {
    padding: 5rem 0;
}

/* ===== Header & Navigation ===== */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
    position: relative;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e4a9b;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: #333;
    padding: 0.5rem 0;
    position: relative;
    display: block;
}

.nav-link.active,
.nav-link:hover {
    color: #1e4a9b;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #1e4a9b;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, #e8f4ff 0%, #1e4a9b 100%);
    padding: 9rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* ===== Thank You Hero ===== */
.thank-you-hero .success-icon {
    font-size: 4rem;
    color: #1e4a9b;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 2px 4px rgba(30, 74, 155, 0.3);
}

/* ===== Enhanced Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #1e4a9b 0%, #2563eb 100%);
    color: #fff;
    border-color: #1e4a9b;
    box-shadow: 0 4px 15px rgba(30, 74, 155, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #153a7a 0%, #1d4ed8 100%);
    border-color: #153a7a;
    color: #fff;
    box-shadow: 0 8px 25px rgba(30, 74, 155, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: #1e4a9b;
    border-color: #1e4a9b;
}

.btn-outline:hover,
.btn-outline:focus {
    background: linear-gradient(135deg, #1e4a9b 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(30, 74, 155, 0.3);
}

.course-btn {
    width: 100%;
    margin-top: 1rem;
}

/* ===== Enhanced About Section ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    border: 1px solid rgba(30, 74, 155, 0.1);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e4a9b, #2563eb);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e4a9b;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== Team Highlights with Unique Design ===== */
.team-highlights {
    margin-top: 3rem;
}

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

.highlight-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 16px;
    border-left: 5px solid #1e4a9b;
    box-shadow: 0 4px 20px rgba(30, 74, 155, 0.08);
    position: relative;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e4a9b 0%, #2563eb 100%);
    border-radius: 50%;
    opacity: 0.1;
}

.highlight-item h4 {
    color: #1e4a9b;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.highlight-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===== Mission Section Enhanced ===== */
.mission {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(30, 74, 155, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mission-statement {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-intro {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.pillar {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(30, 74, 155, 0.1);
    border: 1px solid rgba(30, 74, 155, 0.08);
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1e4a9b, #2563eb);
    border-radius: 0 0 10px 10px;
}

.pillar h4 {
    color: #1e4a9b;
    margin-bottom: 1.2rem;
    margin-top: 1rem;
}

.pillar p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.mission-vision {
    margin: 4rem 0;
    text-align: center;
}

.mission-vision h3 {
    color: #1e4a9b;
}

/* ===== CTA Section Enhanced ===== */
.cta-section {
    background: linear-gradient(135deg, #1e4a9b 0%, #2563eb 100%);
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(30, 74, 155, 0.3);
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-section h3 {
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    position: relative;
    z-index: 2;
}

/* ===== Enhanced Cards Design ===== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.course-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(30, 74, 155, 0.1);
    overflow: hidden;
    border: 1px solid rgba(30, 74, 155, 0.08);
    position: relative;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1e4a9b, #2563eb, #1e4a9b);
}

.course-image {
    height: 220px;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.course-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(30,74,155,0.05)"><polygon points="50,10 90,70 10,70"/><circle cx="50" cy="80" r="5"/></svg>');
    background-size: 80px 80px;
}

.course-placeholder {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e4a9b;
    background: linear-gradient(135deg, rgba(30, 74, 155, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.course-content {
    padding: 2rem;
}

.course-details {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
    border-radius: 15px;
    border-left: 4px solid #1e4a9b;
}

.course-details ul {
    list-style: none;
    margin: 0;
}

.course-details li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.course-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1e4a9b;
    font-weight: bold;
}

.course-details li:last-child {
    margin-bottom: 0;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(30, 74, 155, 0.1);
}

.course-duration {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.course-price {
    font-weight: 700;
    color: #1e4a9b;
    font-size: 1.2rem;
}

/* ===== Enhanced Service/Course Information ===== */
.course-info {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.info-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(30, 74, 155, 0.1);
    border: 1px solid rgba(30, 74, 155, 0.08);
    position: relative;
}

.info-item::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 8px;
    height: 8px;
    background: #1e4a9b;
    border-radius: 50%;
}

.info-item h3 {
    color: #1e4a9b;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.info-item ul {
    list-style: none;
    padding-left: 0;
}

.info-item li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.info-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1e4a9b;
    font-weight: bold;
}

/* ===== Contact Section Enhanced ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.contact-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(30, 74, 155, 0.1);
    border: 1px solid rgba(30, 74, 155, 0.08);
}

.contact-form-container p {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form {
    max-width: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-info {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
    padding: 3rem;
    border-radius: 25px;
    height: fit-content;
    border: 1px solid rgba(30, 74, 155, 0.1);
}

.contact-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    color: #1e4a9b;
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.contact-item p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.opening-hours p {
    margin-bottom: 0.3rem;
}

/* ===== FAQ Section Enhanced ===== */
.faq-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(30, 74, 155, 0.1);
    border: 1px solid rgba(30, 74, 155, 0.08);
    position: relative;
}

.faq-item::before {
    content: '?';
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1e4a9b 0%, #2563eb 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.faq-item h3 {
    color: #1e4a9b;
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    font-weight: 600;
    padding-right: 3rem;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Reviews Enhanced ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.review-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(30, 74, 155, 0.1);
    border-left: 5px solid #1e4a9b;
    border: 1px solid rgba(30, 74, 155, 0.08);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 3rem;
    color: rgba(30, 74, 155, 0.1);
    font-weight: bold;
    line-height: 1;
}

.review-rating {
    margin-bottom: 1.2rem;
}

.stars {
    color: #1e4a9b;
    font-size: 1.3rem;
}

.review-content p {
    font-style: italic;
    margin-bottom: 1.8rem;
    color: #555;
    line-height: 1.6;
}

.review-author strong {
    color: #333;
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.review-author span {
    color: #1e4a9b;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.review-date {
    color: #999 !important;
    font-size: 0.85rem !important;
}

/* ===== Statistics Section Enhanced ===== */
.stats-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.stat-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(30, 74, 155, 0.1);
    border: 1px solid rgba(30, 74, 155, 0.08);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e4a9b, #2563eb);
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1e4a9b;
    display: block;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.stat-item .stat-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
    display: block;
    font-size: 1.05rem;
}

.stat-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #666;
    line-height: 1.5;
}

/* ===== Steps Grid Enhanced ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.step-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(30, 74, 155, 0.1);
    border: 1px solid rgba(30, 74, 155, 0.08);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e4a9b 0%, #2563eb 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(30, 74, 155, 0.3);
}

.step-item h3 {
    color: #1e4a9b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== Footer (minimal changes) ===== */
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #1e4a9b;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #ccc;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #1e4a9b;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.footer-column a {
    color: #ccc;
}

.footer-column a:hover {
    color: #1e4a9b;
    outline: none;
}

.footer-column p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* ===== Form Styles Enhanced ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(30, 74, 155, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    background-color: #fff;
}

.form-input:focus {
    outline: none;
    border-color: #1e4a9b;
    box-shadow: 0 0 0 3px rgba(30, 74, 155, 0.1);
    background-color: #fff;
}

.form-input.error {
    border-color: #dc2626;
}

.error-message {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

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

select.form-input {
    cursor: pointer;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== Checkbox Enhanced ===== */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    gap: 0.75rem;
}

.checkbox-label input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid rgba(30, 74, 155, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label:hover .checkmark {
    border-color: #1e4a9b;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #1e4a9b;
    border-color: #1e4a9b;
}

.checkbox-label input:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:focus ~ .checkmark {
    box-shadow: 0 0 0 3px rgba(30, 74, 155, 0.1);
}

/* ===== Thank You Content Enhanced ===== */
.thank-you-content {
    text-align: center;
}

.thank-you-info {
    margin-bottom: 3rem;
}

.thank-you-info ul {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(30, 74, 155, 0.1);
}

.thank-you-info li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.thank-you-info li:last-child {
    margin-bottom: 0;
}

.explore-more {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
}

.explore-more h2 {
    text-align: center;
    color: #1e4a9b;
    margin-bottom: 2rem;
}

/* ===== Legal Content (unchanged as requested) ===== */
.legal-content {
    background-color: #fff;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.legal-document h2 {
    color: #2c2c2c;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.legal-document h2:first-of-type {
    margin-top: 0;
}

.legal-document h3 {
    color: #1e4a9b;
    margin-top: 2rem;
}

.legal-document ul {
    padding-left: 1.5rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
}

.section-footer {
    background-color: #f8f6ff;
    padding: 2rem 0;
    text-align: center;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

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

    .about-stats {
        flex-direction: row;
        justify-content: space-between;
    }

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

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .mission-pillars {
        grid-template-columns: 1fr;
    }

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

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }

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

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        text-align: center;
        min-width: 150px;
    }

    .nav-link:last-child {
        margin-bottom: 0;
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: #f8f6ff;
    }

    .nav-link.active {
        background-color: #7E5CAD;
        color: #fff;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .section {
        padding: 3rem 0;
    }

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

    .about-stats {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .mission-pillars {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

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

    .hero {
        padding: 4rem 0;
    }

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

    .section {
        padding: 2.5rem 0;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .course-card,
    .info-item,
    .faq-item {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 2rem;
        margin-top: 2rem;
    }

    .contact-form-container,
    .contact-info {
        padding: 1.5rem;
    }

    .legal-document {
        padding: 1.5rem;
    }

    .explore-more {
        padding: 2rem 0;
    }
}

/* ===== Cookie Popup ===== */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e4a9b 0%, #2563eb 100%);
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
    border-top: 3px solid #7E5CAD;
}

.cookie-popup.show {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text p {
    margin: 0;
    color: #fff;
}

.cookie-link {
    color: #e8f4ff;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-link:hover {
    color: #fff;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: #fff;
    color: #1e4a9b;
}

.cookie-btn-accept:hover {
    background: #e8f4ff;
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .cookie-popup-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
} 