/* Smooth scrolling behavior */
html {
    scroll-behavior: smooth;
}

:root {
    --bg-cream: #FAF6EE;          /* Cream matching header */
    --bg-dark-base: #0F0F12;      /* Deep rich charcoal black */
    --bg-dark-card: #18181F;      /* Elevated dark card background */
    --bg-dark-subtle: #22222E;    /* Subtle highlight dark hue */
    
    --primary-blue: #2E3192;
    --electric-blue: #6C52FF;    /* Brightened electric blue for contrast */
    --accent-orange: #FF5A43;
    --accent-yellow: #FFD15C;
    --accent-green: #4CD080;
    --accent-pink: #FF8577;
    
    --text-light: #F4F4F6;        /* Light primary text */
    --text-muted-dark: #A0A0B2;   /* Muted text for dark background */
    --border-light: rgba(255, 255, 255, 0.18);
    --border-glow: #6C52FF;
}

/* Offset for fixed header navigation */
section, .instructors-wrapper {
    scroll-margin-top: 90px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-dark-base);
    color: var(--text-light);
    overflow-x: hidden;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 90, 67, 0.15);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 90, 67, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Translucent Frosted Glass Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(250, 246, 238, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    height: 90px;
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 70px; 
    width: auto;
    display: block;
    object-fit: contain;
}

/* Desktop Nav Header Links */
nav ul.desktop-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav ul.desktop-menu a {
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav ul.desktop-menu a:hover {
    color: var(--electric-blue);
}

/* Hamburger Toggle Button */
.hamburger-btn {
    display: none;
    background: none;
    border: 2px solid #1A1A1A;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1A1A1A;
    line-height: 1;
    z-index: 1001;
}

/* Mobile Slide-down Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: rgba(250, 246, 238, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid #1A1A1A;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    z-index: 999;
}

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

.mobile-menu a.mobile-link {
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: block;
}

.mobile-cta-btn {
    background-color: var(--electric-blue);
    color: white !important;
    padding: 14px 20px !important;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    margin-top: 8px;
    border-bottom: none !important;
    box-shadow: 0 4px 12px rgba(108, 82, 255, 0.3);
}

.btn-cta {
    background-color: var(--electric-blue);
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 82, 255, 0.4);
}

.hero {
    position: relative;
    margin-top: 90px; 
    padding: 60px 24px;
    height: calc(100vh - 90px); 
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-dark-base);
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 135%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.35); 
    z-index: 1;
    display: block;
    border: none;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15,15,18,0.7) 0%, rgba(15,15,18,0.4) 60%, rgba(15,15,18,0.95) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-left h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-left p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 auto 40px auto;
    max-width: 650px;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    font-size: 1.05rem;
    font-weight: 800;
    background-color: #FFFFFF;
    color: #0F0F12;
    padding: 16px 32px;
    border-radius: 16px;
    border: 3px solid #0F0F12;
    box-shadow: 6px 6px 0px #0F0F12;
    flex-wrap: wrap;
}

.hero-stats span {
    color: #0F0F12 !important;
}

.programs, .affiliations-wrapper {
    padding: 100px 24px;
    max-width: 1400px; 
    margin: 0 auto;
}

.programs h2, .affiliations-wrapper h2, .instructors h2, .gallery h2, .reviews h2, .location h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.25;
}

.programs h2 span.sub-line {
    display: block;
    color: var(--text-muted-dark);
    font-weight: 600;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); 
    gap: 20px; 
}

.program-card {
    background: var(--bg-cream);
    color: #1A1A1A;
    border: 3px solid #1A1A1A;
    border-radius: 20px;
    padding: 24px 20px; 
    box-shadow: 6px 6px 0px #1A1A1A;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px; 
    transition: transform 0.2s, box-shadow 0.2s;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0px #1A1A1A;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 2px solid #1A1A1A;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

.program-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1A1A1A;
}

.program-card p {
    color: #555555;
    line-height: 1.5;
    margin-bottom: 24px;
    font-size: 0.9rem; 
}

.program-card .age-tag {
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--electric-blue);
    margin-top: auto;
}

.affiliations-wrapper {
    max-width: 1200px;
    padding: 60px 24px 80px 24px;
}

.affiliations-content {
    max-width: 900px;
    margin-bottom: 44px;
}

.affiliations-content p {
    font-size: 1.15rem;
    color: var(--text-muted-dark);
    line-height: 1.7;
    margin-bottom: 18px;
}

.affiliation-logos-grid {
    display: flex;
    gap: 64px;
    max-width: 760px;
    align-items: center;
    justify-content: flex-start;
}

.affiliation-logo-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 12px 24px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.affiliation-logo-box img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

.affiliation-logo-box .rsl-logo-asset {
    transform: scale(1.1);
}

.instructors-wrapper {
    background-color: var(--bg-dark-subtle);
    color: var(--text-light);
    padding: 100px 24px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.instructors {
    max-width: 1200px;
    margin: 0 auto;
}

.instructors h2 {
    color: var(--text-light);
}

.instructor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.instructor-card {
    background: var(--bg-cream);
    color: #1A1A1A;
    border: 3px solid #1A1A1A;
    border-radius: 24px;
    padding: 16px;
    overflow: hidden;
    box-shadow: 6px 6px 0px #1A1A1A;
    transition: transform 0.2s, box-shadow 0.2s;
}

.instructor-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0px #1A1A1A;
}

.instructor-img {
    width: 100%;
    height: 320px;
    background-color: #ddd;
    border-radius: 18px;
    object-fit: cover;
    margin-bottom: 16px;
    border: 2px solid #1A1A1A;
}

.instructor-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
    color: #1A1A1A;
}

.instructor-info p {
    font-size: 0.85rem;
    color: var(--electric-blue);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.instructor-bio {
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.5;
    padding: 8px 4px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.gallery {
    padding: 100px 24px 20px 24px; 
    max-width: 1200px;
    margin: 0 auto;
}

.berklee-video-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    position: relative;
    border: 2px solid var(--border-light);
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    background-color: var(--bg-dark-card);
    aspect-ratio: 16 / 9;
}

.berklee-carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.berklee-video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.6s ease-in-out;
}

.berklee-video-slide.active-slide {
    opacity: 1;
    z-index: 2;
}

.berklee-video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.berklee-controls-dock {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.berklee-btn-control {
    background-color: rgba(18, 18, 24, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background-color 0.2s;
}

.berklee-btn-control:hover {
    background-color: var(--electric-blue);
}

.berklee-btn-control svg {
    fill: currentColor;
    width: 14px;
    height: 14px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px 24px; 
}

.gallery-column-block {
    display: flex;
    flex-direction: column;
}

.gallery-header-top {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 36px;
}

.gallery-item {
    border: 2px solid var(--border-light);
    border-radius: 24px;
    position: relative;
    height: 480px; 
    overflow: hidden;
    width: 100%;
    background-color: var(--bg-dark-card);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.gallery-slideshow-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-slide-asset {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 1;
}

.gallery-slide-asset.active {
    opacity: 1;
    z-index: 2;
}

.gallery-controls-dock {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.btn-dock-arrow {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    padding: 2px 6px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s, transform 0.2s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.btn-dock-arrow:hover {
    opacity: 0.8;
    transform: scale(1.2);
}

.gallery-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    min-width: 60px;
    min-height: 20px;
    justify-content: center;
}

.gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-dot.active {
    background-color: #FFFFFF;
    width: 20px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}

.social-row {
    margin-top: 40px;
    border-top: 1px dashed var(--border-light);
    padding-top: 40px;
    text-align: center;
}

.social-row h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-light);
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-social {
    padding: 14px 36px;
    border: 1px solid var(--border-light);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}
.btn-social.insta { 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    color: #ffffff;
}
.btn-social.fb { 
    background-color: #1877F2; 
    color: #ffffff;
}

.reviews {
    padding: 100px 0;
    overflow: hidden;
    width: 100%;
}

.reviews-container-heading {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.reviews-marquee-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.reviews-carousel {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: revolveLoop 35s linear infinite;
    will-change: transform;
}

.reviews-marquee-wrapper:hover .reviews-carousel {
    animation-play-state: paused;
}

.review-card {
    width: 350px;
    flex-shrink: 0;
    background: var(--bg-cream);
    color: #1A1A1A;
    border: 3px solid #1A1A1A;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 6px 6px 0px #1A1A1A;
}

.stars {
    color: #D99B00;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.review-card p {
    line-height: 1.6;
    color: #555555;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

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

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border: 2px solid #1A1A1A;
    color: #1A1A1A;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1A1A1A;
}

@keyframes revolveLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}

.location {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

.map-container {
    border: 1px solid var(--border-light);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
    width: 100%;
    min-height: 400px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: grayscale(0.2) contrast(1.1);
}

.location-info h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text-light);
}

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--border-light);
}

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

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    color: #1A1A1A;
}

.info-text h4 {
    color: var(--text-light);
}

.info-text p {
    color: var(--text-muted-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

.promo-banner {
    background-color: var(--accent-orange);
    color: white;
    text-align: center;
    padding: 38px 24px;
}

.promo-banner h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 6px;
    line-height: 1.2;
}

.promo-banner p {
    font-size: 0.95rem;
    opacity: 0.95;
    max-width: 550px;
    margin: 0 auto;
}

footer {
    background-color: var(--bg-cream);
    color: #1A1A1A;
    padding: 32px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    height: 50px;
    width: 140px; 
    background-color: transparent;
    overflow: hidden;
}

.footer-logo-link .logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #1A1A1A;
    text-decoration: none;
    opacity: 0.8;
    font-weight: 700;
    font-size: 0.9rem;
    transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--electric-blue);
}

.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #00C853;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    z-index: 999;
    cursor: pointer;
    transition: transform 0.2s;
}

.chat-widget:hover {
    transform: scale(1.05);
}

/* Prevent mobile menu leak on desktop screens */
@media(min-width: 969px) {
    .mobile-menu {
        display: none !important;
    }
}

@media(max-width: 1100px) {
    .program-grid { grid-template-columns: repeat(3, 1fr); }
}

@media(max-width: 968px) {
    nav ul.desktop-menu { display: none; }
    .desktop-cta { display: none; }
    .hamburger-btn { display: block; }
    
    .hero { padding: 40px 24px; height: calc(100vh - 90px); min-height: auto; }
    .hero-left h1 { font-size: 3rem; }
    .hero-left p { font-size: 1.1rem; }
    .hero, .location { grid-template-columns: 1fr; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr; gap: 32px; }
    .gallery-item { height: 420px; }
    .map-container { min-height: 300px; }
    .program-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { justify-content: center; text-align: center; gap: 16px; flex-direction: column; }
    .affiliation-logos-grid { flex-direction: column; gap: 32px; justify-content: center; margin: 0 auto; }
    .affiliation-logo-box { height: 80px; justify-content: center; }
    .affiliation-logo-box .rsl-logo-asset { transform: scale(1); }
    
    .programs h2, .affiliations-wrapper h2, .instructors h2, .gallery h2, .reviews h2, .location h2 { 
        max-width: 100%; 
        font-size: 1.8rem; 
    }
    
    .berklee-controls-dock { bottom: 12px; left: 12px; }
    .berklee-btn-control { padding: 8px 12px; font-size: 0.75rem; }

    .gallery-controls-dock { bottom: 14px; padding: 6px 12px; gap: 10px; }
    .btn-dock-arrow { font-size: 0.95rem; }
    
    .promo-banner h2 { font-size: 1.5rem; }
    .promo-banner p { font-size: 0.85rem; }
}

@media(max-width: 480px) {
    .program-grid { grid-template-columns: 1fr; } 
    .hero-stats { gap: 16px; padding: 12px 20px; font-size: 0.9rem; }
}

/* --- SECURITY UTILITY CLASSES TO REPLACE INLINE STYLES --- */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.bg-yellow { background-color: var(--accent-yellow); }
.bg-green { background-color: var(--accent-green); }
.bg-pink { background-color: var(--accent-pink); }
.bg-purple { background-color: #B596FF; }
.bg-orange { background-color: var(--accent-orange); }
.bg-light-blue { background-color: #E3F2FD; }
.bg-light-green { background-color: #E8F5E9; }
.bg-light-pink { background-color: #FCE4EC; }
.bg-light-yellow { background-color: #FFF6D6; }