/**
 * Program Category - Kids Education Premium Style
 * Blue, Red, Yellow Theme - Enhanced Design
 */

/* ========== VARIABLES ========== */
.edu-page {
    --blue: #1e56a0;
    --blue-light: #d6e6f5;
    --blue-bg: #e8f4fc;
    --blue-dark: #163d6d;
    --red: #e63946;
    --red-hover: #c1121f;
    --yellow: #ffc233;
    --yellow-light: #fff4d6;
    --orange: #f4a261;
    --dark: #1a1a2e;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --light: #f8fafc;
    --white: #ffffff;
    overflow-x: hidden;
    font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.edu-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== BUTTONS ========== */
.edu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.edu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.edu-btn:hover::before {
    left: 100%;
}

.edu-btn-red {
    background: linear-gradient(135deg, var(--red) 0%, #d62839 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35);
}

.edu-btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.45);
}

.edu-btn-red-outline {
    background: var(--white);
    color: var(--red);
    border: 2px solid var(--red);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.edu-btn-red-outline:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.edu-btn-blue {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(30, 86, 160, 0.35);
}

.edu-btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 86, 160, 0.45);
}

.edu-btn-blue-outline {
    background: var(--white);
    color: var(--blue);
    border: 2px solid var(--blue);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.edu-btn-blue-outline:hover {
    background: var(--blue);
    color: var(--white);
}

.edu-btn-white {
    background: var(--white);
    color: var(--blue);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.edu-btn-white:hover {
    background: var(--light);
    transform: translateY(-2px);
}

/* ========== HERO SECTION ========== */
.edu-hero {
    position: relative;
    background: linear-gradient(180deg, #c9e4f6 0%, #e8f4fc 50%, var(--white) 100%);
    padding: 100px 0 80px;
    overflow: hidden;
    min-height: 600px;
}

.edu-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-wave {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,160L40,170.7C80,181,160,203,240,197.3C320,192,400,160,480,154.7C560,149,640,171,720,181.3C800,192,880,192,960,181.3C1040,171,1120,149,1200,154.7C1280,160,1360,192,1400,208L1440,224L1440,320L1400,320C1360,320,1280,320,1200,320C1120,320,1040,320,960,320C880,320,800,320,720,320C640,320,560,320,480,320C400,320,320,320,240,320C160,320,80,320,40,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(30, 86, 160, 0.08) 2px, transparent 2px);
    background-size: 40px 40px;
}

.hero-star {
    position: absolute;
    animation: twinkle 3s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(255, 194, 51, 0.5));
}

.star1 { top: 12%; left: 8%; font-size: 1.8rem; animation-delay: 0s; }
.star2 { top: 20%; right: 35%; font-size: 1.4rem; animation-delay: 1s; }
.star3 { top: 35%; left: 20%; font-size: 1.2rem; animation-delay: 2s; }

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.6; transform: scale(0.9) rotate(10deg); }
}

.hero-planet {
    position: absolute;
    top: 8%;
    right: 12%;
    font-size: 3rem;
    animation: floatPlanet 8s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

@keyframes floatPlanet {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.edu-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.edu-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
}

.edu-breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.edu-breadcrumb a:hover {
    color: var(--blue);
}

.edu-breadcrumb span {
    color: var(--gray-light);
}

.edu-breadcrumb .current {
    color: var(--red);
    font-weight: 600;
}

.edu-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 20px;
}

.edu-hero-title span {
    display: block;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.edu-hero-desc {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 500px;
}

.edu-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.edu-hero-image img {
    width: 100%;
    max-width: 580px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
    animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

/* ========== FEATURES SECTION ========== */
.edu-features {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.edu-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(232, 244, 252, 0.5) 0%, transparent 100%);
}

.edu-features-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.edu-features-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.edu-features-text p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.9;
}

.edu-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.edu-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.edu-feature-item:hover {
    background: linear-gradient(135deg, var(--blue-light) 0%, #f0f7ff 100%);
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(30, 86, 160, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    border-radius: 12px;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
}

.feature-text {
    flex: 1;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
}

.feature-emoji {
    font-size: 2rem;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

/* ========== BANNER SECTION ========== */
.edu-banner {
    padding: 40px 0 100px;
    background: linear-gradient(180deg, var(--white) 0%, var(--yellow-light) 50%, var(--white) 100%);
    position: relative;
}

.edu-banner::before {
    content: '🤖';
    position: absolute;
    top: 20px;
    left: 5%;
    font-size: 3rem;
    opacity: 0.3;
    animation: floatPlanet 6s ease-in-out infinite;
}

.edu-banner-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0,0,0,0.05);
}

.banner-image {
    position: relative;
    background: linear-gradient(135deg, var(--blue-light) 0%, #cce5ff 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
}

.banner-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.banner-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.banner-products {
    margin-bottom: 28px;
    padding: 20px;
    background: var(--light);
    border-radius: 16px;
    display: inline-block;
}

.banner-products img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.banner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.banner-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 500;
}

.tag-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(244, 162, 97, 0.4);
}

/* ========== PRODUCTS SECTION ========== */
.edu-products {
    padding: 100px 0;
    background: var(--white);
}

.edu-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.products-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.title-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.15));
}

.products-title h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 30px;
    background: var(--light);
}

.view-all-link:hover {
    color: var(--blue);
    background: var(--blue-light);
}

.edu-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.edu-product-card {
    background: var(--white);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.edu-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--red), var(--yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.edu-product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(30, 86, 160, 0.18);
    border-color: var(--blue-light);
}

.edu-product-card:hover::before {
    transform: scaleX(1);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(30, 86, 160, 0.3);
}

.product-image {
    padding: 30px 20px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
    border-radius: 20px;
}

.product-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    transition: transform 0.4s ease;
}

.edu-product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 20px;
}

/* ========== PROJECTS SECTION ========== */
.edu-projects {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--blue-light) 100%);
}

.edu-projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.projects-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.title-img {
    width: 70px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.15));
}

.projects-title h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
}

/* ========== TESTIMONIALS SECTION ========== */
.edu-testimonials {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--blue-light) 0%, #f0f7ff 100%);
}

.edu-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.edu-testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.edu-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(30, 86, 160, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--yellow-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 2px;
}

.testimonial-school {
    font-size: 0.8rem;
    color: var(--blue);
    font-weight: 600;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--yellow);
}

.edu-cta-box {
    text-align: center;
}

/* ========== COURSES SECTION ========== */
.edu-courses {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.edu-courses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, #f0f7ff 0%, transparent 100%);
}

.edu-section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(30, 86, 160, 0.3);
}

.edu-section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.edu-section-header p {
    font-size: 1.15rem;
    color: var(--gray);
}

.edu-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.edu-course-card {
    background: var(--white);
    border-radius: 28px;
    padding: 40px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.edu-course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--blue-light) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.edu-course-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(30, 86, 160, 0.2);
    border-color: var(--blue);
}

.edu-course-card:hover::before {
    opacity: 1;
}

.course-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.edu-course-card:hover .course-icon {
    transform: scale(1.15) rotate(-5deg);
}

.course-tag {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--yellow-light) 0%, #ffecb3 100%);
    color: #b45309;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.edu-course-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.edu-course-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.course-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 24px;
    padding: 10px 20px;
    background: var(--blue-light);
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

.course-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.course-chip {
    padding: 8px 14px;
    background: var(--light);
    color: var(--gray);
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.edu-course-card:hover .course-chip {
    background: var(--white);
}

/* ========== CTA SECTION ========== */
.edu-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

.edu-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.edu-cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.edu-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-emoji {
    font-size: 5rem;
    display: block;
    margin-bottom: 28px;
    animation: bounce 2.5s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

.edu-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.edu-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .edu-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .edu-hero-desc {
        margin: 0 auto 32px;
    }
    
    .edu-hero-image {
        order: -1;
    }
    
    .edu-features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .edu-banner-card {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        padding: 50px 40px;
    }
    
    .edu-courses-grid,
    .edu-products-grid,
    .edu-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .edu-hero {
        padding: 80px 0 50px;
        min-height: auto;
    }
    
    .edu-hero-title {
        font-size: 2.2rem;
    }
    
    .edu-courses-grid,
    .edu-products-grid,
    .edu-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .edu-products-header,
    .edu-projects-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .edu-cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .edu-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .banner-content {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .edu-hero-title {
        font-size: 1.9rem;
    }
    
    .edu-course-card,
    .edu-product-card,
    .edu-testimonial-card {
        padding: 28px 24px;
    }
    
    .course-icon {
        font-size: 4rem;
    }
}

/* ========== PAGE COLORS ========== */
.edu-page.robotics .product-badge,
.edu-page.robotics .section-badge {
    background: linear-gradient(135deg, #1e56a0 0%, #163d6d 100%);
}

.edu-page.science .product-badge,
.edu-page.science .section-badge {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
}

.edu-page.agritech .product-badge,
.edu-page.agritech .section-badge {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.edu-page.language .product-badge,
.edu-page.language .section-badge {
    background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
}
