* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Epilogue', sans-serif;
    background: #f9fafb;
}

/* ========================
   Header
======================== */
header {
    background: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

@media (max-width: 1023px) {
    header {
        position: relative;
    }
}

nav {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

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

/* ========================
   Logo
======================== */
.tribe-events-widget-events-list__event-date-tag.tribe-common-g-col {
    background: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
    margin-right: 12px;
}
.tribe-events-widget-events-list__event-header {
    box-shadow: none;
    border: 1px solid #f4f4f4 !important;
    padding: 8px 20px !important;
    border-radius: 6px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon a img {
    width: 70px;
}

@media (max-width: 900px) {
    .logo-icon a img {
        width: 60px;
    }
}

.logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 1.25rem;
    line-height: 2rem;
    color: #111827;
}

@media (min-width: 640px) {
    .logo-text {
        font-size: 1.5rem;
    }
}

/* ========================
   Desktop Navigation
======================== */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Epilogue', sans-serif;
    font-size: 1rem;
    color: #374151;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
}

.nav-item:hover {
    color: #7a7bda;
}

.nav-link {
    font-family: 'Epilogue', sans-serif;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #7a7bda;
}

.chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.chevron.rotated {
    transform: rotate(180deg);
}

/* cta-button class — used via WordPress menu CSS Classes field */
.cta-button {
    border-radius: 0.5rem;
    background: #7a7bda;
    padding: 0.625rem 1.5rem;
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    color: white !important;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.cta-buttons .cta-button:hover {
    background: #6a6bca;
    color: white !important;
}

/* ========================
   Mobile Menu Button
======================== */
.mobile-menu-button {
    display: block;
    background: none;
    border: none;
    color: #374151;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
}

/* ========================
   Mobile Navigation
======================== */
.mobile-nav {
    border-top: 1px solid #e5e7eb;
    padding: 1rem 0;
    display: none;
}

.mobile-nav.active {
    display: block;
}

@media (min-width: 768px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-accordion {
    border-bottom: none;
}

.mobile-accordion-button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-family: 'Epilogue', sans-serif;
    color: #374151;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
}

.mobile-accordion-button:hover {
    color: #7a7bda;
}

.mobile-accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s, opacity 0.3s;
}

.mobile-accordion-content.active {
    max-height: 500px;
    opacity: 1;
}

.mobile-accordion-inner {
    padding-bottom: 1rem;
    padding-left: 1rem;
}

.mobile-column {
    margin-bottom: 1rem;
}

.mobile-column h4 {
    font-family: 'Anton', sans-serif;
    font-size: 0.875rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

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

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

.mobile-column a {
    font-family: 'Epilogue', sans-serif;
    font-size: 0.875rem;
    color: #4b5563;
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
}

.mobile-column a:hover {
    color: #7a7bda;
}

.mobile-simple-link {
    padding: 0.75rem 0;
    font-family: 'Epilogue', sans-serif;
    color: #374151;
    text-decoration: none;
    display: block;
}

.mobile-simple-link:hover {
    color: #7a7bda;
}

.mobile-cta {
    margin-top: 0.5rem;
    border-radius: 0.5rem;
    background: #7a7bda;
    padding: 0.625rem 1.5rem;
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

.mobile-cta:hover {
    background: #6a6bca;
}

/* ========================
   Mega Menu Dropdown
======================== */
.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    border-top: 1px solid #f3f4f6;
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s;
    pointer-events: none;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* ========================
   CHANGE 4: 4 columns on desktop, 3 on tablet
======================== */
.mega-menu-grid {
    display: grid;
    /* Default: 4 columns on desktop */
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

/* 3 columns on tablet (768px – 1023px) */
@media (max-width: 1023px) {
    .mega-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Empty columns hold their space */
.mega-menu-column:empty {
    min-height: 1px;
}

/* Level 2 headings */
.mega-subheading {
    margin-bottom: 0.75rem;
}

.mega-subheading a {
    font-family: 'Anton', sans-serif;
    font-size: 1.125rem;
    color: #111827;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.mega-subheading a:hover {
    color: #7a7bda;
}

/* Level 3+ sub-lists */
.sub-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 0.5rem;
}

ul.sub-menu-list.nested-deep {
    margin-left: 14px !important;
    padding-right: 0px !important;
    padding: 0px !important;
}

.sub-menu-item {
    margin-bottom: 0.5rem;
}

.sub-menu-item a {
    font-family: 'Epilogue', sans-serif;
    color: #4b5563;
    text-decoration: none;
    display: block;
    padding: 0.35rem 0.75rem;
    border-radius: 0.25rem;
    transition: all 0.2s;
}

.sub-menu-item a:hover {
    color: #7a7bda;
    background: #f9fafb;
    transform: translateX(4px);
}

/* Level 4+ — indented but never breaks columns */
.sub-menu-list.nested-deep {
    border-left: 3px solid #f4f4f4;
    padding-left: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}

.mega-menu-border {
    height: 0.25rem;
    background: linear-gradient(to right, #7a7bda, #a855f7, #ec4899);
}

/* ========================
   Mobile accordion row —
   link + toggle sit side by side
======================== */
.mobile-accordion-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-accordion-link {
    flex: 1;
    padding: 0.75rem 0;
    font-family: 'Epilogue', sans-serif;
    font-size: 1rem;
    color: #374151;
    text-decoration: none;
}

.mobile-accordion-link:hover {
    color: #7a7bda;
}

.mobile-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #374151;
    flex-shrink: 0;
}

.mobile-accordion-toggle:hover {
    color: #7a7bda;
}

.mobile-menu-list,
.mobile-menu-list ul {
    list-style: none !important;
}

.mobile-menu-list li {
    list-style: none !important;
}
/* ========================
   Icons
======================== */
svg {
    display: block;
}


         /* Footer Styles */
        footer {
            background: #111827;
            padding: 3rem 0;
            color: white;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        @media (min-width: 640px) {
            .footer-container {
                padding: 0 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .footer-container {
                padding: 0 2rem;
            }
        }

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

        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Logo Section */
        .footer-logo-section {
            display: flex;
            flex-direction: column;
        }

        .footer-logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

       /* .footer-logo-icon {
            display: flex;
            height: 44px;
            width: 36px;
            align-items: center;
            justify-content: center;
            border-radius: 0.5rem;
            background: #7a7bda;
        }*/
        .footer-logo-icon a img {
            width: 80px;
            max-width: 80px;
            height: auto;
        }

        .footer-logo-text {
            font-family: 'Anton', sans-serif;
            font-size: 1.25rem;
            line-height: 2rem;
        }

        .footer-description {
            margin-top: 1rem;
            font-family: 'Epilogue', sans-serif;
            font-size: 0.875rem;
            color: #9ca3af;
        }

        /* Footer Column */
        .footer-column h4 {
            font-family: 'Anton', sans-serif;
            font-size: 1.125rem;
        }

        .footer-links {
            margin-top: 1rem;
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            font-family: 'Epilogue', sans-serif;
            font-size: 0.875rem;
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: white;
        }

        /* Contact Links */
        .footer-contact {
            margin-top: 1rem;
            list-style: none;
        }

        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
            font-family: 'Epilogue', sans-serif;
            font-size: 0.875rem;
            color: #9ca3af;
        }

        .footer-contact svg {
            width: 16px;
            height: 16px;
        }

        /* Social Media */
        .social-links {
            margin-top: 1rem;
            display: flex;
            gap: 0.75rem;
        }

        .social-link {
            display: flex;
            height: 40px;
            width: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 9999px;
            background: #1f2937;
            transition: background-color 0.2s;
            text-decoration: none;
            color: white;
        }

        .social-link:hover {
            background: #374151;
        }

        .social-link svg {
            width: 20px;
            height: 20px;
        }

        /* Copyright */
        .footer-copyright {
            margin-top: 3rem;
            border-top: 1px solid #1f2937;
            padding-top: 2rem;
            text-align: center;
        }

        .footer-copyright p {
            font-family: 'Epilogue', sans-serif;
            font-size: 0.875rem;
            color: #9ca3af;
        }

        /* Utility Classes */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        @media (min-width: 640px) {
            .container {
                padding: 0 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .container {
                padding: 0 2rem;
            }
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        @media (min-width: 640px) {
            .hero {
                height: 600px;
            }
        }

        .hero-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(157.38deg, rgb(122, 123, 218) 0%, rgb(168, 85, 247) 35.355%, rgb(236, 72, 153) 70.711%);
        }

        .hero-image {
            position: absolute;
            inset: 0;
            opacity: 0.3;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            height: 500px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        @media (min-width: 640px) {
            .hero-content {
                height: 600px;
            }
        }

        .hero h1 {
            font-family: 'Anton', sans-serif;
            font-size: 2.25rem;
            line-height: 1.2;
            color: white;
        }

        @media (min-width: 640px) {
            .hero h1 {
                font-size: 3rem;
            }
        }

        @media (min-width: 768px) {
            .hero h1 {
                font-size: 3.75rem;
            }
        }

        @media (min-width: 1024px) {
            .hero h1 {
                font-size: 4.5rem;
            }
        }

        .hero p {
            margin-top: 1rem;
            font-family: 'Epilogue', sans-serif;
            font-size: 1.125rem;
            color: white;
        }

        @media (min-width: 640px) {
            .hero p {
                font-size: 1.25rem;
            }
        }

        @media (min-width: 768px) {
            .hero p {
                font-size: 1.5rem;
            }
        }

        .hero-buttons {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .leader-card a {
            text-decoration: none;
        }

        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
            }
        }

        .hero-button {
            border-radius: 0.5rem;
            padding: 1rem 2rem;
            font-family: 'Epilogue', sans-serif;
            font-size: 1.125rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            border: none;
            transition: all 0.3s;
            text-decoration: none;
        }

        .hero-button-primary {
            background: #7a7bda;
            color: white;
        }

        .hero-button-primary:hover {
            background: #6a6bca;
        }

        .hero-button-secondary {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: white;
            color: #7a7bda;
            justify-content: center;
        }

        .hero-button-secondary:hover {
            background: #f9fafb;
        }

        /* Announcement Ticker */
        .ticker {
            overflow: hidden;
            background: white;
            padding: 1.5rem 0;
        }

        .ticker-content {
            display: flex;
            gap: 2rem;
            white-space: nowrap;
            animation: scroll 30s linear infinite;
        }

        .ticker-content:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .ticker-item span {
            font-family: 'Anton', sans-serif;
            font-size: 1.25rem;
            letter-spacing: 0.05em;
            color: #111827;
        }

        @media (min-width: 640px) {
            .ticker-item span {
                font-size: 1.5rem;
            }
        }

        .ticker-dot {
            font-size: 1.25rem;
            color: #7a7bdd;
        }

        /* Quick Links */
        .quick-links {
            background: #f9fafb;
            padding: 3rem 0;
        }

        @media (min-width: 640px) {
            .quick-links {
                padding: 4rem 0;
            }
        }

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

        @media (min-width: 640px) {
            .quick-links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .quick-links-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .quick-link-card {
            display: block;
            border-radius: 0.75rem;
            border-top: 4px solid;
            background: white;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            text-decoration: none;
        }

        .quick-link-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            background: linear-gradient(to bottom right, white, #f9fafb);
        }

        .quick-link-icon {
            margin: 0 auto 1.5rem;
            display: flex;
            height: 64px;
            width: 64px;
            align-items: center;
            justify-content: center;
            border-radius: 9999px;
            transition: transform 0.3s;
        }

        .quick-link-card:hover .quick-link-icon {
            transform: rotate(12deg);
        }

        .quick-link-card h3 {
            font-family: 'Anton', sans-serif;
            font-size: 1.5rem;
            color: #111827;
            margin-bottom: 1rem;
            transition: color 0.3s;
        }

        .quick-link-card:hover h3 {
            color: #7a7bda;
        }

        .quick-link-card p {
            font-family: 'Epilogue', sans-serif;
            color: #4b5563;
        }

        /* Section Headers */
        .section {
            padding: 3rem 0;
        }

        @media (min-width: 640px) {
            .section {
                padding: 4rem 0;
            }
        }

        .section-header {
            text-align: center;
        }

        .section-header h2 {
            font-family: 'Anton', sans-serif;
            font-size: 2.25rem;
            color: #111827;
        }

        @media (min-width: 640px) {
            .section-header h2 {
                font-size: 3rem;
            }
        }

        .section-header h2 .highlight {
            color: #7a7bda;
            font-family: 'Anton', sans-serif;
        }

        .section-header p {
            margin-top: 1rem;
            font-family: 'Epilogue', sans-serif;
            font-size: 1.125rem;
            color: #4b5563;
        }

        @media (min-width: 640px) {
            .section-header p {
                font-size: 1.25rem;
            }
        }

        .section-button {
            margin-top: 1.5rem;
            border-radius: 0.5rem;
            background: #7a7bda;
            padding: 0.75rem 2rem;
            font-family: 'Epilogue', sans-serif;
            font-weight: 700;
            color: white;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .section-button:hover {
            background: #6a6bca;
        }

        /* Educational Hub */
        .educational-hub {
            background: white;
        }

        .video-grid {
            margin-top: 2.5rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 1024px) {
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .video-card {
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .video-preview {
            position: relative;
            height: 256px;
            cursor: pointer;
        }

        .video-preview:hover .video-overlay {
            background: rgba(0, 0, 0, 0.1);
        }

        .video-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .play-button {
            display: flex;
            height: 64px;
            width: 64px;
            align-items: center;
            justify-content: center;
            border-radius: 9999px;
            background: rgba(255, 255, 255, 0.9);
            transition: all 0.3s;
        }

        .play-button:hover {
            background: white;
            transform: scale(1.1);
        }

        .video-info {
            background: white;
            padding: 1.5rem;
        }

        .video-info h3 {
            font-family: 'Anton', sans-serif;
            font-size: 1.5rem;
            color: black;
        }

        .video-info p {
            margin-top: 0.5rem;
            font-family: 'Epilogue', sans-serif;
            color: #4b5563;
        }

        .video-link {
            margin-top: 1rem;
            font-family: 'Epilogue', sans-serif;
            color: #7a7bda;
            font-weight: 600;
            cursor: pointer;
            background: none;
            border: none;
            transition: all 0.3s;
        }

        .video-link:hover {
            color: #6a6bca;
            text-decoration: underline;
        }

        /* Video Popup Modal */
        .modal {
            position: fixed;
            inset: 0;
            z-index: 50;
            display: none;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.8);
            padding: 1rem;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            position: relative;
            width: 100%;
            max-width: 896px;
        }

        .modal-close {
            position: absolute;
            top: -48px;
            right: 0;
            display: flex;
            height: 40px;
            width: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 9999px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            cursor: pointer;
            transition: background 0.3s;
        }

        .modal-close:hover {
            background: white;
        }

        .modal-video {
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .modal-video video {
            width: 100%;
        }

        /* Facilities */
        .facilities {
            background: #f9fafb;
        }

        .facilities-grid {
            margin-top: 2.5rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            .facilities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .facilities-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .facility-card {
            display: block;
            border-radius: 0.75rem;
            overflow: hidden;
            background: white;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            text-decoration: none;
        }

        .facility-card:hover {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transform: translateY(-8px);
        }

        .facility-image {
            height: 224px;
            overflow: hidden;
        }

        .facility-card:hover .facility-image img {
            transform: scale(1.1);
        }

        .facility-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .facility-content {
            padding: 1.5rem;
        }

        .facility-content h3 {
            font-family: 'Anton', sans-serif;
            font-size: 1.5rem;
            color: #111827;
            transition: color 0.3s;
        }

        .facility-card:hover h3 {
            color: #7a7bda;
        }

        .facility-content p {
            margin-top: 1rem;
            font-family: 'Epilogue', sans-serif;
            line-height: 1.625;
            color: #4b5563;
        }

        /* Meet the Staff */
        .meet-staff {
            background: white;
            padding: 3rem 0;
        }

        @media (min-width: 640px) {
            .meet-staff {
                padding: 4rem 0;
            }
        }

        /* Leadership Team */
        .leadership {
            background: #f9fafb;
        }

        .leadership h2 {
            font-family: 'Anton', sans-serif;
            font-size: 1.875rem;
            color: #111827;
        }

        @media (min-width: 640px) {
            .leadership h2 {
                font-size: 2.25rem;
            }
        }

        .leadership-grid {
            margin-top: 2.5rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 1024px) {
            .leadership-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .leader-card {
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid #a855f7;
            background: white;
            box-shadow: 0 1px 2px 0 #a855f7;
        }

        .leader-image {
            height: 320px;
            overflow: hidden;
        }

        .leader-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .leader-content {
            padding: 2rem;
        }

        .leader-content h3 {
            font-family: 'Anton', sans-serif;
            font-size: 1.875rem;
            color: #111827;
        }

        .leader-content .role {
            margin-top: 0.5rem;
            font-family: 'Epilogue', sans-serif;
            font-size: 1.125rem;
            color: #7a7bdd;
        }

        .leader-content .bio {
            margin-top: 1rem;
            font-family: 'Epilogue', sans-serif;
            line-height: 1.625;
            color: #4b5563;
        }

        /* Departments */
        .departments {
            background: white;
        }

        .departments h2 {
            font-family: 'Anton', sans-serif;
            font-size: 1.875rem;
            color: #111827;
        }

        @media (min-width: 640px) {
            .departments h2 {
                font-size: 2.25rem;
            }
        }

        .departments-grid {
            margin-top: 2.5rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            .departments-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .departments-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .department-card {
            display: block;
            border-radius: 1rem;
            overflow: hidden;
            background: white;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            text-decoration: none;
        }

        .department-card:hover {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transform: translateY(-8px);
        }

        .department-image {
            height: 256px;
            overflow: hidden;
        }

        .department-card:hover .department-image img {
            transform: scale(1.1);
        }

        .department-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .department-content {
            padding: 1.5rem;
        }

        .department-content h3 {
            font-family: 'Anton', sans-serif;
            font-size: 1.25rem;
            letter-spacing: 0.05em;
            color: #111827;
            transition: color 0.3s;
        }

        .department-card:hover h3 {
            color: #7a7bda;
        }

        .department-full {
            margin-top: 1.5rem;
        }

        /* Events Calendar */
        .events {
            background: #f9fafb;
        }

        .events-container {
            margin-top: 2.5rem;
            border-radius: 0.75rem;
            overflow: hidden;
            background: white;
            padding: 1.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        @media (min-width: 640px) {
            .events-container {
                padding: 2rem;
            }
        }

        .events-header {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 640px) {
            .events-header {
                flex-direction: row;
                align-items: center;
            }
        }

        .events-header h3 {
            font-family: 'Anton', sans-serif;
            font-size: 1.5rem;
            color: #111827;
        }

        .events-header button {
            font-family: 'Epilogue', sans-serif;
            color: #7a7bda;
            background: none;
            border: none;
            cursor: pointer;
            transition: text-decoration 0.3s;
        }

        .events-header button:hover {
            text-decoration: underline;
        }

        .events-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .event-item {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            border-radius: 0.25rem;
            border-left: 4px solid;
            background: #f9fafb;
            padding: 1rem;
        }

        @media (min-width: 640px) {
            .event-item {
                flex-direction: row;
                align-items: center;
                padding: 1.5rem;
            }
        }

        .event-date {
            display: flex;
            height: 72px;
            width: 72px;
            flex-shrink: 0;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 0.5rem;
            padding: 0.75rem;
            color: white;
        }

        .event-date .day {
            font-family: 'Anton', sans-serif;
            font-size: 1.5rem;
        }

        .event-date .month {
            font-family: 'Epilogue', sans-serif;
            font-size: 0.75rem;
        }

        .event-details {
            flex: 1;
        }

        .event-details h4 {
            font-family: 'Anton', sans-serif;
            font-size: 1.25rem;
            color: black;
        }

        .event-details .description {
            margin-top: 0.25rem;
            font-family: 'Epilogue', sans-serif;
            color: #4b5563;
        }

        .event-details .time {
            margin-top: 0.25rem;
            font-family: 'Epilogue', sans-serif;
            font-size: 0.875rem;
            color: #6b7280;
        }

        /* Call to Action */
        .cta {
            background: linear-gradient(to right, #7a7bda, #a855f7, #ec4899);
            padding: 4rem 0;
        }

        @media (min-width: 640px) {
            .cta {
                padding: 5rem 0;
            }
        }

        .cta-container {
            max-width: 896px;
            margin: 0 auto;
            padding: 0 1rem;
            text-align: center;
        }

        @media (min-width: 640px) {
            .cta-container {
                padding: 0 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .cta-container {
                padding: 0 2rem;
            }
        }

        .cta h2 {
            font-family: 'Anton', sans-serif;
            font-size: 2.25rem;
            color: white;
        }

        @media (min-width: 640px) {
            .cta h2 {
                font-size: 3rem;
            }
        }

        @media (min-width: 1024px) {
            .cta h2 {
                font-size: 3.75rem;
            }
        }

        .cta p {
            margin-top: 1.5rem;
            font-family: 'Epilogue', sans-serif;
            font-size: 1.125rem;
            line-height: 1.625;
            color: white;
        }

        @media (min-width: 640px) {
            .cta p {
                font-size: 1.25rem;
            }
        }

        .cta-buttons {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1rem;
        }

        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
            }
        }

        .cta-button {
            border-radius: 0.5rem;
            padding: 1rem 2rem;
            font-family: 'Anton', sans-serif;
            font-size: 1.25rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.3s;
        }

        .cta-button-primary {
            background: white;
            color: #7a7bda;
            border: none;
        }

        .cta-button-primary:hover {
            background: #f9fafb;
        }

        .cta-button-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-button-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 900px;
}

.video-modal-content video {
    width: 100%;
    border-radius: 8px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}