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

:root {
    --primary-color: #4A90E2;
    --secondary-color: #F39C12;
    --accent-color: #E74C3C;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #27AE60;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* ===================================
   Header & Navigation
   =================================== */
header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    padding: 1rem 0;
}

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

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.logo .tagline {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5BA3E8 100%);
    color: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #E67E22;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* ===================================
   Sections
   =================================== */
section {
    padding: 3rem 0;
}

.page-header {
    background-color: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.content-section {
    padding: 3rem 0;
}

h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* ===================================
   About Section
   =================================== */
.about {
    background-color: var(--bg-light);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ===================================
   Quick Info Cards
   =================================== */
.quick-info {
    background-color: var(--bg-white);
}

.quick-info h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.info-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* ===================================
   Programs
   =================================== */
.programs-preview {
    background-color: var(--bg-light);
}

.programs-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.program-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.program-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.age-range {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.link-arrow:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* ===================================
   Program Details Page
   =================================== */
.program-detail {
    margin-bottom: 3rem;
}

.age-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.program-description ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.program-description li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.section-divider {
    border: none;
    border-top: 2px solid var(--border-color);
    margin: 3rem 0;
}

/* ===================================
   Schedule Information
   =================================== */
.schedule-info {
    margin-top: 3rem;
}

.info-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.schedule-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.schedule-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.schedule-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.schedule-card .note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.schedule-types {
    margin: 2rem 0;
}

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

.type-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.type-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.type-card .hours {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0.5rem 0;
}

.type-card .detail {
    font-size: 0.9rem;
    color: var(--text-light);
}

.closures {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.closures ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.closures li {
    margin-bottom: 0.5rem;
}

.closures .note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.important-note {
    background-color: #FFF3CD;
    color: #856404;
    padding: 1rem;
    border-radius: 5px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 1.5rem;
    font-weight: 600;
}

/* ===================================
   Rates Page
   =================================== */
.pricing-note {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 3rem;
}

.pricing-note h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.rate-section {
    margin-bottom: 3rem;
}

.rate-table {
    overflow-x: auto;
    margin-top: 1.5rem;
}

.rate-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.rate-table thead {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.rate-table th,
.rate-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.rate-table th {
    font-weight: 600;
}

.rate-table tbody tr:hover {
    background-color: var(--bg-light);
}

.rate-table tbody tr:last-child td {
    border-bottom: none;
}

.table-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

/* ===================================
   Fees Section
   =================================== */
.fees-section {
    margin: 3rem 0;
}

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

.fee-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.fee-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.fee-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0.5rem 0;
}

.fee-card p:not(.fee-amount) {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===================================
   Payment Information
   =================================== */
.payment-info {
    margin: 3rem 0;
}

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

.payment-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.payment-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.payment-box ul {
    list-style: none;
    margin-left: 0;
}

.payment-box li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.important-policies {
    background-color: #E8F4F8;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

.important-policies h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.important-policies ul {
    margin-left: 1.5rem;
}

.important-policies li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* ===================================
   Enrollment Page
   =================================== */
.intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
}

.enrollment-steps {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.step-content li {
    margin-bottom: 0.5rem;
}

.step-action {
    margin-top: 1rem;
}

.info-box.highlight {
    background-color: #FFF3CD;
    border-left-color: var(--secondary-color);
}

/* ===================================
   Policies Section
   =================================== */
.policies-section {
    margin: 3rem 0;
}

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

.policy-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.policy-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.accessibility-note {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.accessibility-note h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.documents-section {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.documents-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.documents-section ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.documents-section li {
    margin-bottom: 0.5rem;
}

/* ===================================
   Contact Page
   =================================== */
.contact-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.contact-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-card a {
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* ===================================
   Provider Info
   =================================== */
.provider-info {
    max-width: 800px;
    margin: 3rem auto;
}

.provider-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.provider-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.provider-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===================================
   Map Section
   =================================== */
.map-section {
    margin: 3rem 0;
}

.map-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.map-note {
    text-align: center;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5BA3E8 100%);
    color: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.cta-info {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-method h4 {
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 600;
}

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

/* ===================================
   Footer
   =================================== */
footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #BDC3C7;
}

.footer-section a {
    color: #BDC3C7;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #BDC3C7;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu {
        margin-top: 1rem;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1rem;
    }
    
    .rate-table {
        font-size: 0.9rem;
    }
    
    .rate-table th,
    .rate-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .info-grid,
    .programs-grid,
    .fee-grid,
    .policy-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Logo Styles
   =================================== */
.logo-img {
    height: 60px;
    width: auto;
}

.logo a {
    display: block;
}

/* ===================================
   Hero with Image
   =================================== */
.hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ===================================
   Gallery Page
   =================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 1rem;
    background-color: var(--bg-white);
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-caption {
    color: var(--bg-white);
    padding: 1rem;
    text-align: center;
    font-size: 1.1rem;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--bg-white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox .close:hover {
    color: var(--secondary-color);
}

/* Facility Features */
.facility-features {
    margin-top: 4rem;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.feature-icon {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

/* ===================================
   Enrollment Quick Links
   =================================== */
.enrollment-quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.quick-link-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    color: var(--text-dark);
}

.quick-link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quick-link-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ===================================
   Interest Form
   =================================== */
.form-section {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.interest-form {
    max-width: 800px;
    margin: 2rem auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit button {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* ===================================
   Download Section
   =================================== */
.download-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.download-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.download-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.download-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.download-card .btn {
    margin-top: 1rem;
}

.forms-note {
    background-color: #E8F4F8;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.forms-note h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.forms-note ul {
    margin-left: 2rem;
}

.forms-note li {
    margin-bottom: 0.5rem;
}

/* ===================================
   WhatsApp Icon
   =================================== */
.whatsapp-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* ===================================
   Responsive Updates
   =================================== */
@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero {
        min-height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-section {
        padding: 2rem 1rem;
    }
    
    .lightbox .close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .enrollment-quick-links,
    .features-grid,
    .download-cards {
        grid-template-columns: 1fr;
    }
}
