* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
:root {
    --primary-color: #2E3695;
    --secondary-color: #2d6ab8;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #666;
    --light-gray: #e0e0e0;
    --gold: #d4af37;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px; /* Account for fixed navbar */
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 56px;
    }
}

/* Promo Banner */
.promo-banner {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

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

/* Responsive container padding */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.4rem 0;
    transition: box-shadow 0.3s ease;
    min-height: 70px;
}

@media (max-width: 768px) {
    .navbar {
        min-height: 60px;
    }
}

@media (max-width: 480px) {
    .navbar {
        min-height: 56px;
        padding: 0.75rem 0;
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    max-width: 200px;
    flex-shrink: 0;
    margin-right: auto;
}

.logo a {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 120px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    list-style: none;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    padding: 0.5rem 1.5rem;
}

.btn-support {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.btn-support:hover {
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .btn-support {
        padding: 0.75rem 1.25rem;
        width: 100%;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
    display: block;
}

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

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

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

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

.hero-carousel {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 60vh;
        min-height: 400px;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 38, 78, 0.57); /* Dark blue overlay */
    z-index: 0;
}

/* Carousel Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.carousel-dot.active {
    background: var(--white);
    border-color: var(--white);
}

.carousel-dot:hover {
    transform: scale(1.2);
}

/* Carousel Navigation Arrow */
.carousel-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .carousel-dots {
        bottom: 20px;
    }

    .carousel-arrow {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .carousel-dots {
        bottom: 15px;
        gap: 10px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .carousel-arrow {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* Hero Stats Section */
.hero-stats-section {
    background: var(--white);
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-stats-section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .hero-stats-section {
        padding: 1.5rem 0;
    }
}
  
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--white);
}

/* Breadcrumb static banner (About page) */
.breadcrumb-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.breadcrumb-title {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 768px) {
    .breadcrumb-hero { height: 35vh; min-height: 240px; }
    .breadcrumb-title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .breadcrumb-hero { height: 30vh; min-height: 200px; }
    .breadcrumb-title { font-size: 1.6rem; }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.title-line {
    display: block;
}

.hero-title .subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 800px;
}

@media (max-width: 768px) {
    .hero-title .subtitle {
        font-size: 0.9rem;
        margin-top: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title .subtitle {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

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

@media (max-width: 768px) {
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-features {
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

.feature-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

@media (max-width: 480px) {
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2E3695;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Who We Are Section */
.who-we-are {
    padding: 5rem 0;
    background: var(--white);
}

@media (max-width: 768px) {
    .who-we-are {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .who-we-are {
        padding: 2rem 0;
    }
}

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

.section-header h2 {
    color: var(--text-color);
}

.section-headers {
    text-align: left;
    margin-bottom: 0rem;
}

.section-headers h2 {
    color: var(--text-color);
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-tags {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.2rem;
}

/* .section-title is now defined in the Unified Typography System below */
/* This rule maintains backward compatibility but will be overridden by h2.section-title */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
    margin: 0 0 1rem 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1.3fr 1.7fr;
    gap: 3rem;
    align-items: start;
}

/* Schools page specific styling - centered content */
.schools-page .who-we-are-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.schools-page .who-we-are-content .content-text {
    width: 100%;
    text-align: center;
}

.schools-page .who-we-are-content .section-headers {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.schools-page .who-we-are-content .section-title {
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    margin: 0 auto;
    font-size: 2.5rem;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .schools-page .who-we-are-content .section-title {
        font-size: 2.2rem;
    }
}

.schools-page .who-we-are-content .content-text p {
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* .content-text p now inherits font-size, line-height, and color from unified p styles */
/* Only layout-specific properties are defined here */
.content-text p {
    margin-bottom: 1.5rem;
    /* Font properties inherit from unified p styles */
}

@media (max-width: 768px) {
    .content-text p {
        margin-bottom: 1rem;
        /* Font properties inherit from unified p styles */
    }

    .schools-page .who-we-are-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .schools-page .who-we-are-content .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    /* .schools-page .who-we-are-content .content-text p inherits from unified p styles */
}

@media (max-width: 480px) {
    /* .content-text p inherits from unified p styles */

    .schools-page .who-we-are-content {
        padding: 0 15px;
    }

    .schools-page .who-we-are-content .section-headers {
        margin-bottom: 1.5rem;
    }

    .schools-page .who-we-are-content .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .schools-page .who-we-are-content .content-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

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

.manager-image {
    display: block;
}

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

.manager-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.manager-title {
    color: var(--gray);
    margin-bottom: 1rem;
}

.manager-years {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.year-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Goals Section */
.goals {
    padding: 4rem 0;
    background: var(--light-bg);
}

@media (max-width: 768px) {
    .goals {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .goals {
        padding: 2rem 0;
    }
}

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

@media (max-width: 768px) {
    .goals-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.goal-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.goal-card:hover {
    transform: translateY(-5px);
}

.goal-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.goal-amount {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
}

/* Philosophy Values */
.philosophy-values {
    padding: 5rem 0;
    background: var(--white);
}

@media (max-width: 768px) {
    .philosophy-values {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .philosophy-values {
        padding: 2rem 0;
    }
}

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

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

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

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Promotions Section */
.promotions {
    padding: 5rem 0;
    background: var(--light-bg);
}

@media (max-width: 768px) {
    .promotions {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .promotions {
        padding: 2rem 0;
    }
}

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

@media (max-width: 768px) {
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .promotions-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

.promo-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: center;
}

.promo-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.promo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.promo-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .amount {
        font-size: 2.5rem;
    }
    
    .currency {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .amount {
        font-size: 2rem;
    }
    
    .currency {
        font-size: 1rem;
    }
}

.period {
    font-size: 1rem;
    color: var(--gray);
}

.promo-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.promo-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--gray);
}

.promo-features li:last-child {
    border-bottom: none;
}

.btn-more-info {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    min-height: 44px;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-more-info:hover {
    background: var(--secondary-color);
}

@media (max-width: 480px) {
    .btn-more-info {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Projects Section */
.projects {
    padding: 5rem 0;
    background: var(--white);
}

@media (max-width: 768px) {
    .projects {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .projects {
        padding: 2rem 0;
    }
}

.projects-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

@media (max-width: 768px) {
    .projects-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .projects-intro {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0;
    }
}

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

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.project-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .project-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .project-card {
        padding: 1.5rem;
    }
}

.project-card > div:first-child {
    width: 100%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.project-card > div:first-child a {
    display: block;
    width: 100%;
    text-decoration: none;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card > div:first-child a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .project-card > div:first-child {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .project-card > div:first-child {
        margin-bottom: 1rem;
    }
}

.project-location {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .project-location {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .project-location {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
}

.project-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .project-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .project-card h3 {
        font-size: 1.2rem;
    }
}

/* Scholarship Fund Section */
.scholarship-fund {
    padding: 4rem 0;
    background-image: url('image/aa7.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
    min-height: 400px;
}

.scholarship-fund::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 140, 0.85) 0%, rgba(45, 106, 184, 0.85) 100%);
    z-index: 0;
}

.scholarship-fund .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .scholarship-fund {
        padding: 3rem 0;
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .scholarship-fund {
        padding: 2rem 0;
        background-attachment: scroll;
    }
}

.scholarship-fund .section-title {
    color: var(--white);
}

.scholarship-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.scholarship-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.payment-options h3 {
    margin-bottom: 1rem;
}

.btn-read-more {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    font-family: inherit;
}

.btn-read-more:hover {
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}


/* =========================
   CORE VALUES SECTION
========================= */
#core-values {
  background-color: var(--light-bg);
  color: #3333335a;
  font-family: 'Inter', sans-serif;
  padding: 0;
  overflow: hidden;
}

.core-values-container {
  display: flex;
  width: 100%;
  min-height: 600px;
}

/* Left Column: Introduction */
.core-values-intro {
  position: relative;
  width: 33.333%;
  background-image: url('image/zz3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  overflow: hidden;
}

.core-values-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1;
}

.core-values-intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.core-values-tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin-bottom: 15px;
  display: block;
}

.core-values-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.core-values-description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  text-align: left;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.core-values-btn {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  display: inline-block;
}

.core-values-btn:hover {
  background-color: #1e2a7a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 54, 149, 0.3);
}

.core-values-btn:active {
  transform: translateY(0);
}

/* Right Column: Core Values Grid */
.core-values-grid {
  width: 66.667%;
  background-color: var(--light-bg);
  padding: 60px 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 50px;
  align-content: center;
}

.core-value-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.core-value-icon {
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.core-value-icon svg {
  width: 100%;
  height: 100%;
}

.core-value-heading {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.3;
}

.core-value-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .core-values-intro {
    width: 35%;
    padding: 50px 30px;
  }

  .core-values-grid {
    width: 65%;
    padding: 50px 40px;
    gap: 35px 40px;
  }

  .core-values-title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .core-values-container {
    flex-direction: column;
    min-height: auto;
  }

  .core-values-intro {
    width: 100%;
    min-height: 400px;
    padding: 50px 30px;
  }

  .core-values-intro-content {
    text-align: center;
  }

  .core-values-description {
    text-align: center;
    padding: 0;
  }

  .core-values-title {
    font-size: 2rem;
  }

  .core-values-grid {
    width: 100%;
    padding: 50px 30px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .core-value-item {
    align-items: flex-start;
  }

  .core-values-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media screen and (max-width: 480px) {
  .core-values-intro {
    min-height: 350px;
    padding: 40px 20px;
  }

  .core-values-title {
    font-size: 1.75rem;
    margin-bottom: 15px;
  }

  .core-values-tag {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }

  .core-values-description {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .core-values-grid {
    padding: 40px 20px;
    gap: 30px;
  }

  .core-value-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }

  .core-value-heading {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  .core-value-text {
    font-size: 0.9rem;
  }

  .core-values-btn {
    padding: 12px 28px;
    font-size: 0.8rem;
  }
}

/* =========================
   OUR PEOPLE SECTION
========================= */
.our-people-section {
  background-color: var(--light-bg);
  padding: 60px 0;
  font-family: 'Inter', sans-serif;
}

.our-people-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
}

.our-people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.person-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.person-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
  line-height: 1.3;
}

.person-title {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 6px;
  line-height: 1.5;
}

.person-qualifications {
  font-size: 0.9rem;
  font-weight: 400;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

/* Board of Directors Section */
.board-directors-section {
  background-color: var(--light-bg);
  padding: 60px 0;
  font-family: 'Inter', sans-serif;
}

.board-directors-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
}

.board-directors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 50px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: start;
}

.director-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.director-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  line-height: 1.3;
}

.director-role {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 6px;
  line-height: 1.5;
}

.director-qualifications {
  font-size: 0.95rem;
  font-weight: 400;
  color: #222;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Our People and Board of Directors */
@media screen and (max-width: 1024px) {
  .our-people-grid,
  .board-directors-grid {
    gap: 35px 40px;
  }

  .our-people-title,
  .board-directors-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 900px) {
  .board-directors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 40px;
    justify-items: center;
  }

  .director-item {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .our-people-section,
  .board-directors-section {
    padding: 50px 0;
  }

  .our-people-title,
  .board-directors-title {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .our-people-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
  }

  .person-item {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .board-directors-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
  }

  .director-item {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .our-people-section,
  .board-directors-section {
    padding: 40px 0;
  }

  .our-people-title,
  .board-directors-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .person-name,
  .director-name {
    font-size: 1.15rem;
  }

  .person-title,
  .director-role {
    font-size: 0.95rem;
  }

  .person-qualifications,
  .director-qualifications {
    font-size: 0.85rem;
  }

  .our-people-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    justify-items: center;
  }

  .person-item {
    align-items: center;
    text-align: center;
  }

  .board-directors-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    justify-items: center;
  }

  .director-item {
    align-items: center;
    text-align: center;
  }
}

/* Specific styling for the Who We Are section read-more button (line ~153) */
.who-we-are .btn-read-more {
    background: var(--primary-color);
    color: var(--white);
}

.who-we-are .btn-read-more:hover {
    background: var(--white);
    color: var(--primary-color);
}

@media (max-width: 480px) {
    .btn-read-more {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* =========================
   CALL TO ACTION SECTION
========================= */
.cta-section {
    padding: 60px 0;
    background-color: var(--white);
}

.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-image {
    flex: 0 0 45%;
    width: 50%;
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0;
}

.cta-content {
    flex: 0 0 50%;
    width: 50%;
    text-align: left;
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform:none;
    letter-spacing: 0.5px;
}

.cta-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 20px;
    text-align: left;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cta-btn {
    flex: 0 1 auto;
    min-width: 200px;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

/* Override btn-read-more default styles for CTA section */
.cta-section .cta-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.cta-section .cta-btn:hover {
    background: #1e2a7a;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 54, 149, 0.2);
    text-decoration: none;
}

@media (max-width: 1024px) {
    .cta-wrapper {
        gap: 40px;
    }

    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 0;
    }

    .cta-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .cta-image {
        flex: 1 1 100%;
        width: 100%;
    }

    .cta-content {
        flex: 1 1 100%;
        width: 100%;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 18px;
        text-align: left;
    }

    .cta-buttons {
        gap: 12px;
        flex-direction: column;
        align-items: stretch;
        margin-top: 15px;
    }

    .cta-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-wrapper {
        gap: 25px;
    }

    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }

    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .cta-buttons {
        gap: 10px;
        margin-top: 15px;
    }

    .cta-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}

.fund-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 768px) {
    .fund-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .fund-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

.fund-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .fund-stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .fund-stat-number {
        font-size: 2rem;
    }
}

.fund-stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Philosophy Main Section */
.philosophy-main {
    padding: 5rem 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.philosophy-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M50 150 Q100 100 150 150 T200 150" stroke="rgba(0,0,0,0.05)" stroke-width="2" fill="none"/><path d="M30 170 Q80 120 130 170 T180 170" stroke="rgba(0,0,0,0.05)" stroke-width="1.5" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .philosophy-main {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .philosophy-main {
        padding: 2rem 0;
    }
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1.3fr 1.7fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .philosophy-images {
        order: 2;
    }
    
    .philosophy-text {
        order: 1;
    }
}

.philosophy-images {
    position: relative;
}

.philosophy-image-collage {
    position: relative;
    width: 100%;
    height: 500px;
}

@media (max-width: 768px) {
    .philosophy-image-collage {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .philosophy-image-collage {
        height: 300px;
    }
}

.philosophy-img-top-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 55%;
    z-index: 3;
}

.philosophy-img-top-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.philosophy-img-top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 50%;
    z-index: 2;
}

.philosophy-img-top-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.philosophy-img-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    z-index: 1;
}

.philosophy-img-bottom-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.philosophy-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* .philosophy-title now uses unified h2.section-title typography */
.philosophy-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 1024px) {
    .philosophy-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .philosophy-title {
        font-size: 2rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .philosophy-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
}

.philosophy-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin: 0;
}

@media (max-width: 768px) {
    .philosophy-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .philosophy-description {
        font-size: 0.95rem;
    }
}

.philosophy-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.philosophy-bar {
    padding: 1.25rem 1.5rem;
    border-radius: 0;
    color: var(--white);
    width: 100%;
}

.philosophy-bar h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

@media (max-width: 480px) {
    .philosophy-bar h3 {
        font-size: 1rem;
    }
}

.philosophy-bar-yellow {
    background-color: #FFC107;
}

.philosophy-bar-teal {
    background-color: #17A2B8;
}

.philosophy-bar-blue {
    background-color: #1a4d8c;
}

.philosophy-main .btn-read-more {
    background: #1a4d8c;
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
    min-height: 44px;
    width: fit-content;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.philosophy-main .btn-read-more:hover {
    background: #2d6ab8;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .philosophy-main .btn-read-more {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Support Partners Section */
.support-partners {
    padding: 4rem 0;
    background: var(--white);
}

/* Vision & Mission (About page) */
.vision-mission {
    background: var(--white);
    padding: 3rem 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .vision-mission {
        padding: 3rem 0;
    }
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .vm-item {
        padding: 1.5rem;
    }
}

.vm-item {
    text-align: center;
    position: relative;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.vm-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.vm-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    top: -14px; /* sits over the top border */
}

.vm-dot-gold { background: var(--gold); }
.vm-dot-blue { background: var(--secondary-color); }

.vm-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .vm-title { font-size: 1.5rem; }
}

.vm-text {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
    max-width: 620px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .vm-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vm-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .support-partners {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .support-partners {
        padding: 2rem 0;
    }
}

/* .partners-heading now uses unified h2.section-title typography */
.partners-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 3rem;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 1024px) {
    .partners-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .partners-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .partners-heading {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .partners-logos {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .partners-logos {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .partners-logos {
        gap: 1.5rem;
    }
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-weight: 600;
}

/* Partners carousel */
.partners-carousel {
    position: relative;
    overflow: hidden;
}

.partners-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.partners-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.partners-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.partners-arrow:hover { background: rgba(0,0,0,0.55); }

.partners-arrow-left { left: 1px; }
.partners-arrow-right { right: 0; }

.partners-track .partner-logo { flex: 0 0 auto; }

.partner-img {
    max-width: 180px;
    max-height: auto;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 992px) {
    .partner-img {
        max-width: 100px;
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    .partner-img {
        max-width: 90px;
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    .partner-img {
        max-width: 70px;
        max-height: 35px;
    }
}

/* =========================
   GALLERY SECTION
========================= */
.gallery-section {
    padding: 4rem 0;
    background: var(--white);
}

/* .gallery-heading now uses unified h2.section-title typography */
.gallery-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 3rem;
    line-height: 1.3;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 1024px) {
    .gallery-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .gallery-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .gallery-heading {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 50px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.gallery-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    gap: 15px;
    padding: 10px 10px;
    align-items: center;
    cursor: grab;
}

.gallery-track:active {
    cursor: grabbing;
}

.gallery-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.gallery-item {
    flex: 0 0 auto;
    width: 280px;
    height: 280px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
}

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

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    font-size: 1.3rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.gallery-arrow:active {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(0.95);
}

.gallery-arrow-left {
    left: 5px;
}

.gallery-arrow-right {
    right: 5px;
}

@media (max-width: 992px) {
    .gallery-carousel {
        padding: 15px 45px;
    }

    .gallery-item {
        width: 240px;
        height: 240px;
    }

    .gallery-track {
        gap: 12px;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 3rem 0;
    }

    .gallery-carousel {
        padding: 15px 40px;
        box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
    }

    .gallery-item {
        width: 200px;
        height: 200px;
    }

    .gallery-track {
        gap: 12px;
        padding: 8px 8px;
    }

    .gallery-arrow {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .gallery-arrow-left {
        left: 2px;
    }

    .gallery-arrow-right {
        right: 2px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 2rem 0;
    }

    .gallery-carousel {
        padding: 12px 35px;
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
    }

    .gallery-item {
        width: 180px;
        height: 180px;
    }

    .gallery-track {
        gap: 10px;
        padding: 6px 6px;
    }

    .gallery-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .gallery-arrow-left {
        left: 2px;
    }

    .gallery-arrow-right {
        right: 2px;
    }
}

.partner-logo-airpeace {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.partner-logo-airpeace .partner-img {
    max-width: 120px;
    max-height: 60px;
}

.partner-logo-airpeace .logo-tagline {
    font-size: 0.75rem;
    font-style: italic;
    color: #666;
    font-weight: 400;
}

@media (max-width: 768px) {
    .partner-logo-airpeace .logo-text {
        font-size: 0.9rem;
    }
    
    .partner-logo-airpeace .logo-tagline {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .partner-logo-airpeace .logo-text {
        font-size: 0.85rem;
    }
    
    .partner-logo-airpeace .logo-tagline {
        font-size: 0.65rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--light-bg);
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 2rem 0;
    }
}

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

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-content {
        gap: 1.5rem;
    }
}

.contact-item {
    margin-bottom: 0.5rem;
}

.contact-item h3,
.email-info h4,
.address-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-item p,
.email-info p,
.address-info p {
    font-size: 1.1rem;
    color: var(--gray);
}

.address-info {
    margin-top: 1rem;
}

.foundation-intro {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto;
    font-size: 1.1rem;
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
}

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

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.footer-section p {
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-links a {
    color: var(--white);
    font-size:3.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-links a:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: rgba(255,255,255,0.8);
}

.powered-by {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.powered-by span {
    font-size: 0.9rem;
    color: var(--white);
    text-transform: lowercase;
}

.srj-logo {
    display: flex;
    border: 2px solid #dc3545;
    width: fit-content;
    overflow: hidden;
}

.srj-logo-red {
    background: #dc3545;
    color: var(--white);
    padding: 0.4rem 0.8rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.srj-logo-blue {
    background: #2d6a9e;
    color: var(--white);
    padding: 0.4rem 0.8rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.contact-icon {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    flex-shrink: 0;
}

.contact-item span {
    font-size: 0.95rem;
    color: var(--white);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
    }
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 5px;
    min-height: 44px;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    min-height: 44px;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

@media (max-width: 480px) {
    .newsletter-form button {
        width: 100%;
    }
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

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

.social-icon:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.scholarship-content p 
{
    color: var(--white);
 }

.copyright {
    color: var(--white);
    text-align: center;
    font-size: 0.9rem;
    margin: 0;
}

.powered-text {
    color: #ff6b35;
    font-weight: 600;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #2E3695;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .nav-wrapper {
        gap: 1rem;
    }

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: left;
        transition: left 0.3s ease-in-out;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 1.5rem 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        z-index: 999;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        width: 100%;
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
    }

    .has-dropdown {
        position: static;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-bg);
        padding: 0;
        min-width: auto;
        margin-top: 0;
    }

    .dropdown li {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .dropdown a {
        padding-left: 2.5rem;
    }

    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .manager-card {
        order: -1;
    }

    .promo-card.featured {
        transform: scale(1);
    }

    .promo-card.featured:hover {
        transform: translateY(-5px);
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .projects-intro,
    .philosophy-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-item,
    .email-info,
    .address-info {
        margin-bottom: 1.5rem;
    }

    .foundation-intro {
        font-size: 1rem;
        margin: 2rem auto;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-wrapper {
        gap: 0.75rem;
    }

    .nav-menu {
        top: 56px;
        max-height: calc(100vh - 56px);
    }

    .promo-banner {
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }

    .promo-banner p {
        padding: 0 10px;
    }

    .section-tag {
        font-size: 0.8rem;
    }

    .section-tags {
        font-size: 0.5rem;
    }

    .goal-card,
    .value-card,
    .project-card,
    .tenet-card {
        padding: 1.5rem;
    }

    .manager-card {
        padding: 1.5rem;
    }


    .promo-card {
        padding: 1.5rem;
    }

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

    .projects-intro,
    .philosophy-description,
    .foundation-intro,
    .scholarship-content p {
        font-size: 0.95rem;
    }

    .footer-bottom {
        gap: 1.25rem;
    }

    .footer-social-links a {
        font-size: 2rem;
    }

    .value-icon {
        font-size: 2.5rem;
    }
}

/* =========================
   CONTACT PAGE STYLES
========================= */

.contact-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-info-section .section-headers,
.contact-form-section .section-headers {
    margin-bottom: 1.5rem;
}

/* .contact-info-section .section-title and .contact-form-section .section-title */
/* now inherit from h2.section-title unified styles */
.contact-info-section .section-title,
.contact-form-section .section-title {
    margin-top: 0.5rem;
}

.contact-intro {
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-detail-icon {
    width: 24px;
    height: 24px;
}

.contact-detail-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-detail-content p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.contact-detail-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-detail-content .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-detail-content .social-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail-content .social-links a:hover {
    color: var(--secondary-color);
}

.contact-detail-content .social-links a i {
    font-size: 1.2rem;
}

.contact-form-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form {
    margin-top: 2rem;
}

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

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

.form-group .required {
    color: #e74c3c;
    margin-left: 2px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 54, 149, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    min-width: 160px;
    justify-content: center;
}

.btn-submit:hover {
    background: #1e2a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 54, 149, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

.form-message {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 2.5rem;
    }

    /* .contact-info-section .section-title and .contact-form-section .section-title */
    /* now inherit responsive sizes from h2.section-title unified styles */
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 2rem;
    }

    .contact-details {
        gap: 2rem;
    }

    .contact-detail-item {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .contact-detail-content .social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 0;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 1.5rem;
    }

    /* .contact-info-section .section-title and .contact-form-section .section-title */
    /* now inherit responsive sizes from h2.section-title unified styles */

    .contact-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .contact-details {
        gap: 1.5rem;
    }

    .contact-detail-content h3 {
        font-size: 1rem;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* =========================
   FAQs PAGE STYLES
========================= */

.faqs-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.faqs-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faqs-header .section-headers {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* .faqs-header .section-title now inherits from h2.section-title unified styles */
.faqs-header .section-title {
    margin-top: 0.5rem;
}

.faqs-intro {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.faqs-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    box-shadow: 0 4px 12px rgba(46, 54, 149, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.faq-question:focus {
    outline: none;
    background: var(--light-bg);
}

.faq-question:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--gray);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
    list-style-type: disc;
}

.faq-answer-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.faq-answer-content li:last-child {
    margin-bottom: 0;
}

.faq-answer-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.faq-answer-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.faq-answer-content strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Responsive Design for FAQs Page */
@media (max-width: 768px) {
    .faqs-section {
        padding: 3rem 0;
    }

    .faqs-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    /* .faqs-header .section-title now inherits responsive sizes from h2.section-title */

    .faqs-intro {
        font-size: 1rem;
    }

    .faqs-container {
        padding: 0 1rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        gap: 1rem;
    }

    .faq-answer-content {
        padding: 0 1.5rem 1.25rem 1.5rem;
        font-size: 0.95rem;
    }

    .faq-answer-content ul {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .faqs-section {
        padding: 2rem 0;
    }

    .faqs-header {
        margin-bottom: 2rem;
        padding: 0;
    }

    /* .faqs-header .section-title now inherits responsive sizes from h2.section-title */

    .faqs-intro {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .faqs-container {
        padding: 0;
    }

    .faq-item {
        margin-bottom: 1rem;
        border-radius: 6px;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        gap: 0.75rem;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
    }

    .faq-answer-content {
        padding: 0 1.25rem 1rem 1.25rem;
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .faq-answer-content ul {
        padding-left: 1.25rem;
        margin: 0.75rem 0;
    }

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

/* =========================
   PRIVACY POLICY PAGE STYLES
========================= */

.privacy-policy-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.privacy-policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.policy-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.policy-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.policy-intro-text:last-child {
    margin-bottom: 0;
}

.policy-intro-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.policy-intro-text a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.policy-section:last-of-type {
    margin-bottom: 2rem;
}

.policy-section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.policy-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.policy-text:last-child {
    margin-bottom: 0;
}

.policy-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.policy-text a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.policy-text strong {
    color: var(--text-color);
    font-weight: 600;
}

.policy-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
    list-style-type: disc;
}

.policy-list li {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1rem;
}

.policy-list li:last-child {
    margin-bottom: 0;
}

.policy-list li strong {
    color: var(--text-color);
    font-weight: 600;
}

.policy-contact-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.policy-contact-info .policy-text {
    margin-bottom: 0.5rem;
}

.policy-contact-info .policy-text:last-child {
    margin-bottom: 0;
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
    text-align: center;
}

.policy-effective-date {
    font-size: 0.95rem;
    color: var(--gray);
    font-style: italic;
}

/* Responsive Design for Privacy Policy Page */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 3rem 0;
    }

    .privacy-policy-content {
        padding: 2.5rem;
        margin: 0 1rem;
    }

    .policy-intro {
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .policy-intro-text {
        font-size: 1rem;
    }

    .policy-section {
        margin-bottom: 2.5rem;
    }

    .policy-section-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .policy-text {
        font-size: 0.95rem;
    }

    .policy-list {
        padding-left: 1.5rem;
        margin: 1.25rem 0;
    }

    .policy-list li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .policy-contact-info {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy-section {
        padding: 2rem 0;
    }

    .privacy-policy-content {
        padding: 1.5rem;
        margin: 0;
        border-radius: 0;
    }

    .policy-intro {
        margin-bottom: 2rem;
        padding-bottom: 1.25rem;
    }

    .policy-intro-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .policy-section {
        margin-bottom: 2rem;
    }

    .policy-section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .policy-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .policy-list {
        padding-left: 1.25rem;
        margin: 1rem 0;
    }

    .policy-list li {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 0.625rem;
    }

    .policy-contact-info {
        padding: 1rem;
        margin-top: 1.25rem;
    }

    .policy-footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .policy-effective-date {
        font-size: 0.85rem;
    }
}

/* =========================
   SCHOLARSHIP PAGE STYLES
========================= */

.scholarship-page-section {
    padding: 5rem 0;
    background: var(--white);
}

.scholarship-intro-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.scholarship-intro-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.scholarship-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

.scholarship-intro-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scholarship-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.scholarship-intro-image:hover img {
    transform: scale(1.05);
}

/* Scholarship Page H2 Styling - Match schools.html */
.scholarship-page-section .section-title,
.scholarship-qualifications-section .section-title,
.scholarship-benefits-section .section-title,
.scholarship-procedures-section .section-title,
.scholarship-renewal-section .section-title,
.scholarship-notes-section .section-title {
    font-size: 2.5rem;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .scholarship-page-section .section-title,
    .scholarship-qualifications-section .section-title,
    .scholarship-benefits-section .section-title,
    .scholarship-procedures-section .section-title,
    .scholarship-renewal-section .section-title,
    .scholarship-notes-section .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .scholarship-page-section .section-title,
    .scholarship-qualifications-section .section-title,
    .scholarship-benefits-section .section-title,
    .scholarship-procedures-section .section-title,
    .scholarship-renewal-section .section-title,
    .scholarship-notes-section .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .scholarship-page-section .section-title,
    .scholarship-qualifications-section .section-title,
    .scholarship-benefits-section .section-title,
    .scholarship-procedures-section .section-title,
    .scholarship-renewal-section .section-title,
    .scholarship-notes-section .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
}

/* Qualifications Section */
.scholarship-qualifications-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.qualifications-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-top: 1rem;
    margin-bottom: 3rem;
    max-width: 900px;
}

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

.qualification-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.qualification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

.qualification-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.qualification-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.qualification-subtitle {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.qualification-description {
    font-style: italic;
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.qualification-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.qualification-list {
    margin: 0;
    padding-left: 1.5rem;
    list-style-type: decimal;
}

.qualification-list li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 0.95rem;
}

.qualification-list li:last-child {
    margin-bottom: 0;
}

/* Benefits Section */
.scholarship-benefits-section {
    padding: 5rem 0;
    background: var(--white);
}

.benefits-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.benefits-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefits-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.benefits-image:hover img {
    transform: scale(1.05);
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.benefit-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}

/* Procedures Section */
.scholarship-procedures-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.procedure-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.procedure-card:last-child {
    margin-bottom: 0;
}

.procedure-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.procedure-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style-type: decimal;
    color: var(--text-color);
}

.procedure-list li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 1rem;
}

.procedure-list li:last-child {
    margin-bottom: 0;
}

.procedure-sublist {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.procedure-sublist li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.procedure-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.procedure-card p:last-child {
    margin-bottom: 0;
}

/* Renewal Section */
.scholarship-renewal-section {
    padding: 5rem 0;
    background: var(--white);
}

.renewal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 10px;
}

.renewal-list {
    margin: 2rem 0 0 0;
    padding-left: 1.5rem;
    list-style-type: decimal;
}

.renewal-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 1rem;
}

.renewal-list li:last-child {
    margin-bottom: 0;
}

/* Notes Section */
.scholarship-notes-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.notes-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.note-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.note-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.note-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.note-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.note-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}

.note-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.approval-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
    text-align: center;
}

.approval-note p {
    font-size: 0.95rem;
    color: var(--gray);
    font-style: italic;
}

/* Apply Section */
.scholarship-apply-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e2a7a 100%);
    color: var(--white);
    text-align: center;
}

.apply-content {
    max-width: 700px;
    margin: 0 auto;
}

.apply-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.apply-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.apply-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-apply-now {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.btn-apply-now:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.btn-apply-now svg {
    width: 20px;
    height: 20px;
}

.apply-buttons .btn-read-more {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    min-height: auto;
    margin-top: 0;
}

.apply-buttons .btn-read-more:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Scholarship Page */
@media (max-width: 992px) {
    .scholarship-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-content-wrapper .benefits-image {
        order: -1;
    }

    .qualifications-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .scholarship-page-section,
    .scholarship-qualifications-section,
    .scholarship-benefits-section,
    .scholarship-procedures-section,
    .scholarship-renewal-section,
    .scholarship-notes-section {
        padding: 3rem 0;
    }

    .scholarship-apply-section {
        padding: 3rem 0;
    }

    .qualifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .qualification-card {
        padding: 2rem;
    }

    .procedure-card {
        padding: 2rem;
    }

    .renewal-content {
        padding: 2rem;
    }

    .notes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .apply-title {
        font-size: 2rem;
    }

    .apply-text {
        font-size: 1.1rem;
    }

    .apply-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-apply-now {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .apply-buttons .btn-read-more {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .scholarship-page-section,
    .scholarship-qualifications-section,
    .scholarship-benefits-section,
    .scholarship-procedures-section,
    .scholarship-renewal-section,
    .scholarship-notes-section {
        padding: 2rem 0;
    }

    .scholarship-apply-section {
        padding: 2.5rem 0;
    }

    .scholarship-intro-text {
        font-size: 1rem;
    }

    .qualification-card,
    .procedure-card {
        padding: 1.5rem;
    }

    .qualification-title {
        font-size: 1.3rem;
    }

    .procedure-title {
        font-size: 1.3rem;
    }

    .renewal-content {
        padding: 1.5rem;
    }

    .renewal-list {
        padding-left: 1.25rem;
    }

    .note-item {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .apply-title {
        font-size: 1.75rem;
    }

    .apply-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* =========================
   SCHOLARSHIP FORM PAGE STYLES
========================= */

.scholarship-form-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.form-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.form-header .section-headers {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header .section-title {
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

.form-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-top: 1rem;
}

.form-intro a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.form-intro a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.google-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-notice {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.form-notice p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
}

.form-notice p:first-child {
    margin-top: 0;
}

.form-notice p:last-child {
    margin-bottom: 0;
}

.form-notice strong {
    color: var(--primary-color);
    font-weight: 600;
}

.form-notice em {
    color: var(--text-color);
    font-style: italic;
}

.google-form-wrapper iframe {
    width: 100%;
    border: none;
    display: block;
    margin: 0 auto;
    min-height: 2500px;
    background: var(--white);
}

.form-footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.info-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.info-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}

.info-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Design for Scholarship Form Page */
@media (max-width: 992px) {
    .google-form-wrapper {
        padding: 1.5rem;
    }

    .form-footer-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .scholarship-form-section {
        padding: 3rem 0;
    }

    .form-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .form-header .section-title {
        font-size: 2rem;
    }

    .form-intro {
        font-size: 1rem;
    }

    .google-form-wrapper {
        padding: 1rem;
        margin: 0 1rem;
    }

    .google-form-wrapper iframe {
        min-height: 2800px;
    }

    .form-notice {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .form-footer-info {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .info-box {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .scholarship-form-section {
        padding: 2rem 0;
    }

    .form-header {
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .form-header .section-title {
        font-size: 1.75rem;
    }

    .form-intro {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .google-form-wrapper {
        padding: 0.75rem;
        margin: 0;
        border-radius: 0;
    }

    .google-form-wrapper iframe {
        min-height: 3000px;
    }

    .form-notice {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .form-notice p {
        font-size: 0.9rem;
    }

    .form-footer-info {
        margin-top: 1.5rem;
        padding: 0;
        gap: 1rem;
    }

    .info-box {
        padding: 1.25rem;
        flex-direction: column;
        gap: 1rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
    }

    .info-content h3 {
        font-size: 1.1rem;
    }

    .info-content p {
        font-size: 0.95rem;
    }
}

/* =========================
   UNIFIED TYPOGRAPHY SYSTEM
   Standardized heading and paragraph styles across all pages
   ========================= */

/* H1 Elements - Breadcrumb Titles */
h1.breadcrumb-title {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 1024px) {
    h1.breadcrumb-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    h1.breadcrumb-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    h1.breadcrumb-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
}

/* H1 Elements - Hero Titles */
h1.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 1024px) {
    h1.hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    h1.hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    h1.hero-title {
        font-size: 2rem;
    }
}

/* H2 Elements - Section Titles (Primary) */
h2.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
    margin: 0 0 1rem 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 1024px) {
    h2.section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    h2.section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    h2.section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
}

/* H2 Elements - Other Styles (vm-title, apply-title, etc.) */
h2.vm-title,
h2.cta-title,
h2.core-values-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
    margin: 0 0 1rem 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 1024px) {
    h2.vm-title,
    h2.apply-title,
    h2.cta-title,
    h2.core-values-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    h2.vm-title,
    h2.apply-title,
    h2.cta-title,
    h2.core-values-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    h2.vm-title,
    h2.apply-title,
    h2.cta-title,
    h2.core-values-title {
        font-size: 1.3rem;
    }
}

/* H3 Elements - Subsection Titles */
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 1024px) {
    h3 {
        font-size: 1.35rem;
    }
}

@media (max-width: 768px) {
    h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    h3 {
        font-size: 1.1rem;
    }
}

/* H4 Elements */
h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    h4 {
        font-size: 1rem;
    }
}

/* H5 Elements */
h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    h5 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h5 {
        font-size: 0.95rem;
    }
}

/* H6 Elements */
h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    h6 {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    h6 {
        font-size: 0.9rem;
    }
}

/* Paragraph Elements - Standard */
p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin: 0 0 1.5rem 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 1024px) {
    p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.875rem;
    }
}

/* Paragraph Elements - Intro/Lead Text */
p.intro-text,
p.contact-intro,
p.faqs-intro,
p.form-intro,
p.scholarship-intro-text,
p.vm-text,
p.qualifications-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin: 0 0 1.5rem 0;
    padding: 0;
}

@media (max-width: 1024px) {
    p.intro-text,
    p.contact-intro,
    p.faqs-intro,
    p.form-intro,
    p.scholarship-intro-text,
    p.vm-text,
    p.qualifications-intro {
        font-size: 1.05rem;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    p.intro-text,
    p.contact-intro,
    p.faqs-intro,
    p.form-intro,
    p.scholarship-intro-text,
    p.vm-text,
    p.qualifications-intro {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    p.intro-text,
    p.contact-intro,
    p.faqs-intro,
    p.form-intro,
    p.scholarship-intro-text,
    p.vm-text,
    p.qualifications-intro {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.875rem;
    }
}

