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

body {
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333333;
    font-size: 16px;
}

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

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #1a1a2e;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    margin-right: auto;
    padding-right: 2rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 100px;
    width: auto;
    margin-right: -8px;
}

.logo h1 {
    font-size: 0.9rem;
    color: #1a1a2e;
    margin: 0;
    margin-left: 0;
    line-height: 1.1;
    font-weight: normal;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.nav-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.3rem;
    flex-wrap: nowrap;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 3rem;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.nav-menu li {
    display: inline-block;
    position: relative;
    margin: 0;
    white-space: nowrap;
}

.nav-menu a {
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav-menu a:hover {
    color: #0066cc;
    background: rgba(0, 102, 204, 0.1);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: fixed;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border-radius: 4px;
    z-index: 1000;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(0,0,0,0.02);
    overflow: visible;
}

.dropdown-content a {
    color: #555 !important;
    padding: 6px 12px !important;
    text-decoration: none;
    display: block;
    font-size: 0.8rem;
    border-radius: 0 !important;
    background: none !important;
    transition: all 0.15s ease;
    font-weight: 300;
}

.dropdown-content a:hover {
    background-color: rgba(0, 102, 204, 0.03) !important;
    color: #0066cc !important;
    transform: none;
    border-radius: 2px !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn::after {
    content: " ▼";
    font-size: 0.7rem;
    margin-left: 0.5rem;
    opacity: 0.7;
}

.dropdown-subheading {
    padding: 16px 20px 12px 20px !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    color: #1a1a2e !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 1px solid #e8e9ea;
    margin-bottom: 4px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    background: none !important;
}

.dropdown-subheading:hover {
    background-color: rgba(0, 102, 204, 0.05) !important;
    color: #0066cc !important;
    transform: none !important;
}

/* Wide dropdown for What We Do */
.dropdown-wide {
    min-width: 650px;
    max-width: 90vw;
    padding: 6px 0;
    max-height: 400px;
    overflow: visible;
}

.dropdown-single {
    min-width: 320px;
    max-width: 90vw;
}

.dropdown-columns {
    display: flex;
    gap: 25px;
    padding: 0 10px;
}

.dropdown-column {
    flex: 1;
    min-width: 180px;
    background: rgba(248, 249, 250, 0.05);
    border-radius: 3px;
    padding: 3px 0;
    position: relative;
}

.dropdown-column:hover {
    background: rgba(248, 249, 250, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.dropdown-column .dropdown-subheading {
    background: none !important;
    border-bottom: 2px solid #0066cc;
    border-radius: 0 !important;
    margin: 0 12px 8px 12px;
    padding: 12px 8px 8px 8px !important;
}

.dropdown-column a:not(.dropdown-subheading) {
    margin: 0 12px;
    border-radius: 6px !important;
    font-size: 0.85rem;
    padding: 8px 12px !important;
}

.donate-btn {
    background: #6a1b99 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 6px !important;
    color: white !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    margin-left: 0.5rem !important;
}

.donate-btn:hover {
    background: #5a1580 !important;
    color: white !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(106, 27, 153, 0.3) !important;
}

main {
    margin-top: 80px;
}

.hero {
    background: url('IMG_11111.JPG') center/cover no-repeat;
    color: white;
    text-align: left;
    position: relative;
    padding: 4rem 0 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.5;
}

.cta-button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.cta-button:hover {
    background: #004d99;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

section {
    padding: 5rem 0;
    position: relative;
}

.about {
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.about h2, .mission h2, .contact h2, .donate h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a2e;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.about p, .mission p {
    font-size: 1.125rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    color: #555;
    font-weight: 400;
}

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

.point {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.point h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact {
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.contact-item {
    text-align: center;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.point:hover,
.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.contact-item h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.donate {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
}

.donate h2 {
    color: white;
}

.donate-button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.donate-button:hover {
    background: #004d99;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

footer {
    background: #1a1a2e;
    color: white;
    text-align: center;
    padding: 3rem 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== RESPONSIVE BREAKPOINTS =====
   Mobile: 320px - 767px
   Tablet: 768px - 1024px  
   Desktop: 1025px - 1440px
   Large Desktop: 1441px+
*/

/* ===== MOBILE HAMBURGER MENU ===== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    margin: 0;
    width: 35px;
    height: 35px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #1a1a2e !important;
    margin: 2px 0;
    transition: all 0.3s ease;
    display: block !important;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-overlay {
    position: fixed !important;
    top: 80px !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(100vh - 80px) !important;
    background: white !important;
    z-index: 999 !important;
    transform: translateY(-100%) !important;
    transition: transform 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    overflow-y: auto !important;
    display: block !important;
}

.mobile-overlay.active {
    transform: translateY(0) !important;
}

.mobile-overlay-content {
    padding: 20px 30px 40px;
}

.mobile-search-item {
    border-bottom: none;
}

.mobile-search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
}

.mobile-search-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.mobile-search-input:focus {
    border-color: #6a1b99;
}

.mobile-search-btn {
    background: linear-gradient(135deg, #6a1b99 0%, #ff6b35 100%);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.mobile-search-btn:hover {
    transform: scale(1.05);
}

.mobile-search-btn svg {
    width: 18px;
    height: 18px;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-item > a {
    color: #1a1a2e;
    font-size: 1.3rem;
    font-weight: 400;
    text-decoration: none;
    display: block;
    padding: 15px 0;
    transition: color 0.2s ease;
}

.mobile-nav-item > a:hover {
    color: #6a1b99;
}

.mobile-dropdown-items {
    max-height: 0;
    overflow: hidden;
    padding-left: 20px;
    transition: max-height 0.4s ease;
    background: #f8f9fa;
}

.mobile-dropdown-items.active {
    max-height: 1000px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.mobile-dropdown-items a {
    color: #666;
    font-size: 1rem;
    font-weight: 300;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.mobile-dropdown-items a:hover {
    color: #6a1b99;
}

.mobile-dropdown-subheading {
    color: #6a1b99 !important;
    font-weight: 500 !important;
    margin-top: 10px;
    margin-bottom: 5px;
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-toggle {
    display: none;
}

@media (min-width: 769px) {
    .hamburger-menu {
        display: none !important;
    }

    .mobile-overlay {
        display: none !important;
    }
}

/* ===== MOBILE NAVIGATION (768px and below) ===== */
@media (max-width: 768px) {
    main {
        margin-top: 85px !important;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        width: 100%;
    }

    .nav-container {
        position: relative !important;
        display: block !important;
        padding: 12px 20px !important;
    }

    .logo {
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .logo a {
        display: flex !important;
        align-items: center !important;
    }

    .logo img {
        height: 60px !important;
        width: auto !important;
        margin-right: -8px !important;
    }

    .logo h1 {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
        margin-left: 0 !important;
    }

    .hamburger-menu {
        display: flex !important;
        flex-direction: column !important;
        gap: 3px !important;
        justify-content: center !important;
        align-items: center !important;
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 24px !important;
        height: 18px !important;
        background: transparent !important;
        border: none !important;
    }

    .hamburger-menu span {
        width: 18px !important;
        height: 2px !important;
        background-color: #1a1a2e !important;
        background: #1a1a2e !important;
        display: block !important;
        margin: 0 !important;
        border-radius: 1px !important;
        opacity: 1 !important;
        visibility: visible !important;
        -webkit-appearance: none !important;
        flex-shrink: 0 !important;
    }

    .mobile-overlay {
        top: 85px !important;
        height: calc(100vh - 85px) !important;
    }

    .nav-right {
        display: none !important;
    }
    
    .nav-right.mobile-open {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu > li > a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        font-weight: 500;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        background: #f8f9fa;
        margin: 0;
        padding: 0.5rem 0;
    }
    
    .dropdown-content.show {
        display: block;
    }
    
    .dropdown-content a {
        padding: 0.75rem 1rem !important;
        font-size: 0.95rem !important;
    }
    
    .dropbtn::after {
        content: "+" !important;
        float: right;
        font-size: 1.2rem;
    }
    
    .dropdown.open .dropbtn::after {
        content: "−" !important;
    }
    
    .search-container {
        margin: 1rem 0;
        width: 100%;
    }
    
    .donate-btn {
        display: block;
        text-align: center;
        margin-top: 1rem;
    }
    
    /* Mobile overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
        display: none;
    }
    
    .nav-right.mobile-open ~ .mobile-overlay,
    .nav-right.mobile-open + .mobile-overlay {
        display: block;
    }
}

/* Add responsive content optimizations */
@media (max-width: 768px) {
    /* Main content adjustments */
    main {
        margin-top: 100px;
    }
    
    /* Hero sections responsive */
    .hero-content, .about-hero .hero-content {
        text-align: center;
        max-width: 100% !important;
        margin-left: 0 !important;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    }
    
    /* Grid layouts mobile-first */
    .leadership-grid, .mission-points, .approach-pillars {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .card-image {
        width: 14rem !important;
        height: 14rem !important;
        margin: 0 auto;
    }
    
    /* Container max widths */
    .container, .content-wrapper, .hero-layout, .leadership-cards-container {
        max-width: 100% !important;
        padding: 0 1rem !important;
    }
    
    /* Section spacing */
    section {
        padding: 2rem 0 !important;
    }
}

/* ===== TABLET SPECIFIC (768px - 1024px) ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    .container, .content-wrapper, .hero-layout, .leadership-cards-container {
        max-width: 95%;
        padding: 0 1.5rem;
    }
    
    /* Hero Sections */
    .hero-content h1, .about-hero h1 {
        font-size: clamp(2rem, 5vw, 2.8rem);
        line-height: 1.2;
    }
    
    .hero-content, .hero-layout .hero-content {
        max-width: 80%;
        margin-left: 0;
    }
    
    /* Grid Layouts */
    .leadership-grid {
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .mission-points, .approach-pillars {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    /* Navigation */
    .nav-menu {
        gap: 0.3rem;
    }
    
    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .dropdown-wide {
        min-width: 500px;
    }
    
    /* Images */
    .card-image {
        width: 15rem;
        height: 15rem;
    }
}

/* ===== MOBILE (320px - 767px) ===== */
@media (max-width: 767px) {
    /* Navigation */
    .hamburger-menu {
        display: flex !important;
        order: 2;
    }
    
    .nav-right {
        display: none;
    }
    
    .nav-right.active {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem;
        z-index: 1000;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #e9ecef;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        width: 100%;
        font-size: 1rem;
    }
    
    .dropdown-content {
        position: static;
        background-color: #f8f9fa;
        display: none;
    }
    
    .dropdown-content.mobile-open {
        display: block !important;
    }
    
    .dropdown-columns {
        flex-direction: column;
        gap: 0;
    }
    
    .dropbtn::after {
        content: " +" !important;
        float: right;
    }
    
    .dropdown.mobile-open .dropbtn::after {
        content: " −" !important;
    }
    
    /* Layout */
    main {
        margin-top: 80px;
        padding: 0;
    }

    .container, .content-wrapper, .hero-layout, .leadership-cards-container {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    /* Hero Sections */
    .about-hero, .hero-section {
        padding: 1.5rem 0;
        min-height: auto;
    }

    .hero-content {
        max-width: 100% !important;
        margin-left: 0 !important;
        text-align: center;
        padding: 0 0.5rem;
    }

    .hero-content h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .hero-content .subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        text-align: center;
    }

    .hero-content .subtitle-small {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    /* Grid Layouts */
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .card-image {
        width: 12rem;
        height: 12rem;
        margin: 0 auto;
    }
    
    .leadership-item {
        align-items: center;
        text-align: center;
    }
    
    .mission-points, .approach-pillars, .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Typography */
    .section-intro, .mission-statement {
        font-size: 0.85rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }

    p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    /* Spacing */
    section {
        padding: 1.5rem 0;
    }
    
    .controls-bar {
        flex-direction: column;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .search-bar input {
        width: 100%;
    }
}

/* ===== SMALL MOBILE (320px - 480px) ===== */
@media (max-width: 480px) {
    .container, .content-wrapper, .hero-layout, .leadership-cards-container {
        padding: 0 0.4rem;
    }

    .hero-content h1 {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        line-height: 1.1;
    }

    .hero-content h2 {
        font-size: 1.1rem;
    }

    .hero-content p, .hero-content .subtitle {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    p {
        font-size: 0.8rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1rem;
    }

    .card-image {
        width: 10rem;
        height: 10rem;
        margin: 0 auto;
    }

    .leadership-grid {
        gap: 1rem;
        padding: 0 0.25rem;
    }

    section {
        padding: 1.2rem 0;
    }

    .about h2, .mission h2, .contact h2, .donate h2 {
        font-size: 1.4rem;
    }

    .hero-actions, .action-buttons {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        text-align: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.7rem;
    }

    .search-bar input {
        font-size: 0.8rem;
        padding: 8px 10px 8px 30px;
    }
}

/* ===== LARGE DESKTOP (1441px+) ===== */
@media (min-width: 1441px) {
    .container, .content-wrapper, .hero-layout, .leadership-cards-container {
        max-width: 1400px;
        padding: 0 3rem;
    }
    
    .hero-content h1 {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
    }
    
    .leadership-grid {
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
        gap: 2rem;
    }
    
    .card-image {
        width: 18rem;
        height: 18rem;
    }
    
    .dropdown-wide {
        min-width: 700px;
    }
    
    section {
        padding: 6rem 0;
    }
}

/* Mobile-First Responsive Design */
/* Base styles for mobile devices */

/* Viewport meta tag should be in HTML head */
/* <meta name="viewport" content="width=device-width, initial-scale=1.0"> */

/* Container and Layout Responsiveness */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation Responsive */
.nav-container {
    flex-direction: column;
    padding: 1rem;
}

.nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.nav-item {
    width: 100%;
    text-align: center;
    padding: 0.5rem;
}

/* Hero Section Responsive */
.hero {
    padding: 4rem 1rem 3rem;
    min-height: 50vh;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-buttons .btn {
    width: 80%;
    max-width: 300px;
    padding: 1rem;
    text-align: center;
}

/* Typography Responsive */
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
p { font-size: 1rem; line-height: 1.6; }

/* Images Responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Tables Responsive */
table {
    width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
}

/* Forms Responsive */
input, textarea, select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu {
        flex-direction: row;
        width: auto;
        gap: 2rem;
    }
    
    .nav-item {
        width: auto;
        text-align: left;
    }
    
    .hero {
        padding: 6rem 2rem 4rem;
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.125rem;
        padding: 0 2rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: auto;
        min-width: 200px;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .hero {
        padding: 8rem 0 6rem;
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.25rem;
        padding: 0;
    }
    
    h1 { font-size: 4rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 2rem; }
}

/* Large Desktop Styles (1440px and up) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero h1 {
        font-size: 5rem;
    }
}

/* Touch-Friendly Elements */
@media (hover: none) and (pointer: coarse) {
    .btn, .nav-item, button, a {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 16px;
    }
}

/* Search Bar Styles */
.search-container {
    display: flex;
    align-items: center;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 20px;
    padding: 4px;
    width: 140px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.search-container:hover {
    background: rgba(248, 249, 250, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.search-input {
    border: none;
    background: transparent;
    padding: 8px 12px;
    font-size: 0.9rem;
    outline: none;
    flex: 1;
    color: #1a1a2e;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.search-input::placeholder {
    color: #666;
}

.search-btn {
    background: #0066cc;
    border: none;
    border-radius: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

/* Search Dropdown Styles */
.search-container {
    position: relative;
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    min-width: 400px;
}

.search-dropdown.active {
    display: block;
}

.search-dropdown-result {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-dropdown-result:hover {
    background: #f8f9fa;
}

.search-dropdown-result:last-child {
    border-bottom: none;
}

.search-result-page {
    color: #6a1b99;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.search-result-title {
    color: #1a1a2e;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.search-result-snippet {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

.search-result-snippet mark {
    background: rgba(106, 27, 153, 0.2);
    color: #6a1b99;
    font-weight: 500;
    padding: 1px 3px;
    border-radius: 2px;
}

.search-see-all {
    padding: 12px 16px;
    text-align: center;
    background: #f8f9fa;
    color: #6a1b99;
    font-weight: 500;
    border-top: 1px solid #e0e0e0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-see-all:hover {
    background: #e9ecef;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.search-btn:hover {
    background: #004d99;
    transform: scale(1.05);
}

/* Floating Visual Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.float-element {
    position: absolute;
    background: linear-gradient(45deg, rgba(106, 27, 153, 0.1), rgba(0, 102, 204, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(106, 27, 153, 0.15), rgba(0, 102, 204, 0.1));
}

.float-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 80%;
    animation-delay: 1s;
    background: linear-gradient(45deg, rgba(0, 102, 204, 0.1), rgba(106, 27, 153, 0.15));
}

.float-3 {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 15%;
    animation-delay: 2s;
    background: linear-gradient(45deg, rgba(106, 27, 153, 0.08), rgba(0, 102, 204, 0.12));
}

.float-4 {
    width: 40px;
    height: 40px;
    top: 30%;
    left: 70%;
    animation-delay: 3s;
    background: linear-gradient(45deg, rgba(0, 102, 204, 0.12), rgba(106, 27, 153, 0.08));
}

.float-5 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 85%;
    animation-delay: 4s;
    background: linear-gradient(45deg, rgba(106, 27, 153, 0.06), rgba(0, 102, 204, 0.1));
}

.float-6 {
    width: 70px;
    height: 70px;
    top: 70%;
    left: 60%;
    animation-delay: 5s;
    background: linear-gradient(45deg, rgba(0, 102, 204, 0.08), rgba(106, 27, 153, 0.12));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Mission Section Floating Background */
.floating-mission-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.mission-float {
    position: absolute;
    border-radius: 50%;
    animation: missionFloat 8s ease-in-out infinite;
}

.mission-float-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    left: 5%;
    background: linear-gradient(135deg, rgba(106, 27, 153, 0.05), rgba(0, 102, 204, 0.08));
    animation-delay: 0s;
}

.mission-float-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 75%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.06), rgba(106, 27, 153, 0.04));
    animation-delay: 2s;
}

.mission-float-3 {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 20%;
    background: linear-gradient(135deg, rgba(106, 27, 153, 0.08), rgba(0, 102, 204, 0.05));
    animation-delay: 4s;
}

@keyframes missionFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }
    33% {
        transform: translateY(-15px) scale(1.1);
        opacity: 0.7;
    }
    66% {
        transform: translateY(-30px) scale(0.9);
        opacity: 0.5;
    }
}

/* Enhanced Mission Points with Icons */
.point {
    position: relative;
    overflow: hidden;
}

.point::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(106, 27, 153, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.point:hover::before {
    opacity: 1;
    transform: rotate(45deg) translateX(100%);
}

.point-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.point:hover .point-icon {
    transform: scale(1.1) rotateY(360deg);
    filter: grayscale(0%);
}

.point-education:hover {
    border-left: 4px solid #4CAF50;
}

.point-health:hover {
    border-left: 4px solid #2196F3;
}

.point-welfare:hover {
    border-left: 4px solid #FF9800;
}

/* Hero Content Enhancement */
.hero-content {
    position: relative;
    z-index: 2;
}


/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

/* Stats Section */
.stats-section {
    background: white;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Mission Statement */
.mission-statement {
    font-size: 1.3rem;
    color: #1a1a2e;
    font-weight: 500;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Approach Pillars */
.approach-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.pillar:hover .pillar-icon {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.pillar h3 {
    color: #1a1a2e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pillar p {
    color: #666;
    line-height: 1.6;
}

/* Section Intro */
.section-intro {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Action Section */
.action-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.action-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.action-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.action-btn {
    background: #0066cc;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.action-btn.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Nested Dropdown Styles */
.dropdown-nested {
    position: relative;
}

.nested-content {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: white;
    min-width: 250px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 1001;
    padding: 4px 0;
}

.dropdown-nested:hover .nested-content {
    display: block;
}

.nested-content a {
    color: #555 !important;
    padding: 8px 16px !important;
    text-decoration: none;
    display: block;
    font-size: 0.8rem;
    font-weight: 300;
    transition: all 0.15s ease;
}

.nested-content a:hover {
    background-color: rgba(0, 102, 204, 0.05) !important;
    color: #0066cc !important;
    padding-left: 20px !important;
}

.dropdown-nested > a::after {
    content: " ▶";
    font-size: 0.6rem;
    margin-left: 0.5rem;
    opacity: 0.5;
}

/* Education Page Styles */
.education-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 8rem 0 6rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.education-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.education-stats {
    background: white;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Essay Competition Section */
.essay-competition {
    padding: 6rem 0;
    background: #f8f9fa;
}

.competition-header {
    text-align: center;
    margin-bottom: 4rem;
}

.competition-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.competition-tagline {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.competition-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.competition-info h3,
.competition-details h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.competition-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.competition-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature h4 {
    color: #1a1a2e;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.detail-item {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.detail-item h4 {
    color: #1a1a2e;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.detail-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.competition-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Education Programs Section */
.education-programs {
    padding: 6rem 0;
    background: white;
}

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

.program-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.program-card h3 {
    color: #1a1a2e;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.program-link:hover {
    color: #004d99;
    text-decoration: underline;
}

/* Education CTA Section */
.education-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.education-cta h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.education-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Responsive Design for Education Page */
@media (max-width: 768px) {
    .competition-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .competition-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

/* Divisions Page Styles */
.divisions-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 8rem 0 6rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.divisions-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.divisions-stats {
    background: white;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.divisions-grid {
    padding: 6rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.division-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.division-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
}

.division-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 60px rgba(0,0,0,0.15);
}

.division-visual {
    position: relative;
    height: 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.education-card .division-visual {
    background: linear-gradient(135deg, #6a1b99 0%, #4a148c 100%);
}

.health-card .division-visual {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
}

.welfare-card .division-visual {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.division-icon {
    font-size: 4rem;
    color: white;
    z-index: 2;
    position: relative;
}

.division-bg-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.2;
}

.education-pattern {
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.health-pattern {
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.welfare-pattern {
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.division-content {
    padding: 2.5rem;
}

.division-content h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.division-tagline {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.division-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.division-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.highlight-item {
    text-align: center;
}

.highlight-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    display: block;
    line-height: 1;
}

.highlight-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-top: 0.5rem;
}

.division-programs {
    margin-bottom: 2rem;
}

.division-programs h4 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.division-programs ul {
    list-style: none;
    padding: 0;
}

.division-programs li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.division-programs li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.division-cta {
    display: inline-block;
    background: #0066cc;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.division-cta:hover {
    background: #004d99;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.cross-division-impact {
    padding: 6rem 0;
    background: white;
}

.cross-division-impact h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.connection-item {
    text-align: center;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.connection-item:hover {
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.connection-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.connection-item:hover .connection-icon {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.connection-item h3 {
    color: #1a1a2e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.connection-item p {
    color: #666;
    line-height: 1.6;
}

.divisions-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.divisions-cta h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.divisions-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Responsive Design for Divisions Page */
@media (max-width: 768px) {
    .division-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .division-highlights {
        grid-template-columns: 1fr;
    }
    
    .impact-connections {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* Partners Page Styles */
.partners-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 8rem 0 6rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.partners-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.partnership-stats {
    background: white;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.partnership-overview {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.benefit-item h3 {
    color: #1a1a2e;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.partner-categories {
    padding: 6rem 0;
    background: white;
}

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

.category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 60px rgba(0,0,0,0.15);
}

.category-header {
    padding: 2.5rem 2.5rem 1.5rem;
    position: relative;
}

.academic-card .category-header {
    background: linear-gradient(135deg, #6a1b99 0%, #4a148c 100%);
    color: white;
}

.vocational-card .category-header {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: white;
}

.corporate-card .category-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.government-card .category-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.category-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.category-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
}

.category-content {
    padding: 2.5rem;
}

.category-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat {
    text-align: center;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    display: block;
    line-height: 1;
}

.stat-desc {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-top: 0.5rem;
}

.category-description {
    margin-bottom: 2rem;
}

.category-description p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.partner-examples {
    margin-bottom: 2rem;
}

.partner-examples h4,
.partnership-programs h4 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.partner-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.partner-item {
    padding: 0.5rem 1rem;
    background: #e9ecef;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #495057;
    text-align: center;
    font-weight: 500;
}

.partnership-programs {
    margin-bottom: 2rem;
}

.partnership-programs ul {
    list-style: none;
    padding: 0;
}

.partnership-programs li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.partnership-programs li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.category-cta {
    display: inline-block;
    background: #0066cc;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    margin: 1rem 2.5rem 2rem;
}

.category-cta:hover {
    background: #004d99;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.success-stories {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.story-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.story-header {
    margin-bottom: 1.5rem;
}

.story-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.story-header h3 {
    color: #1a1a2e;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.story-category {
    color: #0066cc;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
}

.story-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.result-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.result-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    display: block;
    line-height: 1;
}

.result-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-top: 0.5rem;
}

.become-partner {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.partnership-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: white;
}

.cta-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.partnership-benefits-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit .benefit-icon {
    background: #0066cc;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit span {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.action-btn.large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.contact-info strong {
    color: #0066cc;
}

/* Responsive Design for Partners Page */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .partner-list {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-actions {
        align-items: center;
    }
    
    .partnership-benefits {
        grid-template-columns: 1fr;
    }
}

/* Sophisticated Overview Page Styles */
.overview-page {
    overflow-x: hidden;
}

.overview-main {
    position: relative;
}

/* Immersive Hero Section */
.overview-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #6a1b99 100%);
    opacity: 0.95;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 60%; left: 85%; animation-delay: 1s; }
.particle-3 { top: 30%; left: 70%; animation-delay: 2s; }
.particle-4 { top: 80%; left: 20%; animation-delay: 3s; }
.particle-5 { top: 10%; left: 90%; animation-delay: 4s; }
.particle-6 { top: 70%; left: 50%; animation-delay: 1.5s; }
.particle-7 { top: 40%; left: 15%; animation-delay: 2.5s; }
.particle-8 { top: 90%; left: 80%; animation-delay: 3.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.highlight-text {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #6a1b99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-item {
    text-align: center;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.cta-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.cta-secondary {
    background: transparent;
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.header-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(106, 27, 153, 0.1);
    color: #6a1b99;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Impact Story Timeline */
.impact-story {
    padding: 8rem 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #6a1b99, #ff6b35);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #6a1b99;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 4px solid white;
    box-shadow: 0 4px 20px rgba(106, 27, 153, 0.3);
}

.timeline-marker.active {
    background: #ff6b35;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(255, 107, 53, 0.6); }
    100% { box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3); }
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    margin: 0 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.timeline-content h3 {
    color: #1a1a2e;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.timeline-stats .stat {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #6a1b99;
    font-weight: 500;
}

/* Interactive Divisions Showcase */
.divisions-showcase {
    padding: 8rem 0;
    background: white;
}

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

.division-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.division-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
}

.division-btn.active,
.division-btn:hover {
    border-color: #6a1b99;
    color: #6a1b99;
    background: rgba(106, 27, 153, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 27, 153, 0.1);
}

.btn-icon {
    font-size: 1.5rem;
}

.division-content {
    position: relative;
    min-height: 500px;
}

.division-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.division-panel.active {
    opacity: 1;
    visibility: visible;
}

.panel-visual {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.visual-element {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
}

.education-visual {
    background: linear-gradient(135deg, #6a1b99 0%, #4a148c 100%);
}

.health-visual {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
}

.welfare-visual {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.icon-item {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    animation: floatIcon 4s ease-in-out infinite;
}

.icon-item:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.icon-item:nth-child(2) { top: 20%; right: 20%; animation-delay: 1s; }
.icon-item:nth-child(3) { bottom: 30%; left: 15%; animation-delay: 2s; }
.icon-item:nth-child(4) { bottom: 25%; right: 25%; animation-delay: 3s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.panel-info h3 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.division-tagline {
    font-size: 1.2rem;
    color: #6a1b99;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.division-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.division-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

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

.highlight-title {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 1.1rem;
}

.highlight-text {
    color: #666;
    line-height: 1.5;
}

.division-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #6a1b99;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.division-explore:hover {
    background: #4a148c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 27, 153, 0.3);
}

/* Partnership Network Visualization */
.partnership-network {
    padding: 8rem 0;
    background: #1a1a2e;
    color: white;
}

.network-visualization {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 600px;
    margin: 0 auto 4rem;
}

.network-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.center-node {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 8px 40px rgba(255, 255, 255, 0.3);
}

.center-node img {
    width: 40px;
    height: 40px;
}

.center-node span {
    font-weight: 700;
    color: #1a1a2e;
}

.network-category {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.network-category:hover {
    transform: scale(1.1);
}

.network-category.corporate { top: 50%; right: 15%; transform: translate(0, -50%); }
.network-category.civic { top: 50%; left: 15%; transform: translate(0, -50%); }

.category-node {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.network-category:hover .category-node {
    background: rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.node-icon {
    font-size: 1.5rem;
}

.node-label {
    font-size: 0.8rem;
    font-weight: 600;
}

.node-count {
    font-size: 0.7rem;
    opacity: 0.8;
}

.connection-line {
    position: absolute;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.network-category.corporate .connection-line {
    width: 200px;
    height: 2px;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.network-category.civic .connection-line {
    width: 200px;
    height: 2px;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.network-category:hover .connection-line {
    background: #ff6b35;
}

.network-details {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    min-height: 200px;
}

.detail-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-card.active {
    opacity: 1;
    visibility: visible;
}

.detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.detail-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.partner-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.network-cta {
    text-align: center;
}

/* Success Stories Carousel */
.success-stories-carousel {
    padding: 8rem 0;
    background: #f8f9fa;
}

.stories-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.story-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.5s ease;
}

.story-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.story-content {
    padding: 2rem;
}

.story-quote {
    font-size: 1.4rem;
    color: #1a1a2e;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.story-quote::before {
    content: '"';
    font-size: 4rem;
    color: #6a1b99;
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

.story-author {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: #6a1b99;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
}

.author-title {
    color: #6a1b99;
    font-size: 0.9rem;
    font-weight: 500;
}

.author-impact {
    color: #666;
    font-size: 0.9rem;
}

.story-visual {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.education-story .visual-bg {
    background: linear-gradient(135deg, #6a1b99 0%, #4a148c 100%);
}

.fintech-story .visual-bg {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
}

.community-story .visual-bg {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.story-stats {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
}

.carousel-controls {
    position: absolute;
    bottom: -4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.carousel-btn:hover {
    border-color: #6a1b99;
    color: #6a1b99;
    background: rgba(106, 27, 153, 0.05);
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #6a1b99;
}

/* Overview CTA */
.overview-cta {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #6a1b99 50%, #ff6b35 100%);
    opacity: 0.95;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    color: white;
}

.cta-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature span {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.cta-primary.large,
.cta-secondary.large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
}

.cta-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.cta-contact strong {
    color: #ff6b35;
}

/* Responsive Design for Overview Page */
@media (max-width: 768px) {
    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 40px;
    }
    
    .timeline-item .timeline-content {
        text-align: left !important;
    }
    
    .timeline-marker {
        left: 20px;
        transform: none;
    }
    
    .division-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .division-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .network-visualization {
        height: 400px;
    }
    
    .network-category {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 1rem;
    }
    
    .connection-line {
        display: none;
    }
    
    .story-slide {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-actions {
        align-items: center;
    }
}
.hero-content {
    max-width: 50%;
    z-index: 2;
    position: relative;
    margin-left: 2rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

/* Footer Styles */
.footer {
    background-color: #2a2a2a;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-logo {
    font-size: 4rem;
    font-weight: bold;
    color: #ffd700;
    font-style: italic;
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

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

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1rem 2rem;
    border-top: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: #cccccc;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    /* Hide navigation elements */
    .hamburger-menu,
    .mobile-menu-toggle,
    .search-container,
    .search-btn,
    .donate-btn,
    .dropdown-content,
    .search-dropdown,
    .nav-menu {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }

    button.hamburger-menu {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
    }

    /* Show only logo in header */
    header {
        position: relative !important;
        background: white !important;
        box-shadow: none !important;
    }

    nav {
        background: white !important;
    }

    .nav-container {
        justify-content: center !important;
    }

    .nav-right {
        display: none !important;
    }

    .logo {
        margin: 0 auto !important;
    }

    .logo h1 {
        color: #1a1a2e !important;
    }

    /* Ensure content is visible */
    body {
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    /* Remove fixed positioning */
    header, nav {
        position: static !important;
    }

    /* Hide footer social icons for cleaner print */
    .footer-social {
        display: none !important;
    }

    /* Ensure proper page breaks */
    .hero-section,
    .content-section,
    main section {
        page-break-inside: avoid;
    }
}
EOF < /dev/null