/* GENERAL */
:root {
    --rich-black: #001219ff;
    --midnight-green: #005f73ff;
    --dark-cyan: #0a9396ff;
    --tiffany-blue: #94d2bdff;
    --vanilla: #e9d8a6ff;
    --gamboge: #ee9b00ff;
    --alloy-orange: #ca6702ff;
    --rust: #bb3e03ff;
    --rufous: #ae2012ff;
    --auburn: #9b2226ff;
}
body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background: var(--rich-black);
    color: var(--vanilla);
}
head {
    display: none; /* Hide the head tag in the DOM, but style its children if needed */
}

/* HEADER */
header {
    background: #f5f5f5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 0;
    margin-bottom: 24px;
}

/* NAVIGATION */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
}
nav a {
    text-decoration: none;
    color: var(--midnight-green);
    font-weight: 600;
    transition: color 0.2s;
}
nav a:hover {
    color: var(--gamboge);
}
nav img {
    height: 48px;
    margin-right: 12px;
}
nav span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--midnight-green);
}
nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    background: transparent;
    margin: 0;
    padding: 0;
}
nav ul li {
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 10px;
    background: #f5f5f5;
    margin: 0;
    transition: max-height 0.3s;
}
nav ul li a {
    text-decoration: none;
    color: var(--midnight-green, #00343f);
    font-weight: 500;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
    margin-right: 10px;
    z-index: 2;
}
.nav-toggle span {
    height: 3px;
    width: 25px;
    background: #00343f;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        align-items: center;
        width: 100%;
    }
    nav ul {
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0 10px;
    }
    nav ul.active {
        max-height: 500px;
        padding: 10px;
    }
    .nav-toggle {
        display: flex;
        align-self: center;
        margin-left: 16px;
    }
}

/* MEDIA QUERIES */
@media (max-width: 700px) {
    nav {
        flex-direction: column;
        height: auto;
        padding: 12px;
    }
    nav ul {
        gap: 12px;
    }
    nav img {
        height: 36px;
    }
    nav span {
        font-size: 1.1rem;
    }
}

/* MAIN CONTENT */
.site-logo {
    display: block;
    margin: 0 auto 12px auto;
    max-width: 90px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,95,115,0.10);
    background: var(--vanilla);
    padding: 6px;
}

/* CONTACT SECTION */
.contact-container {
    background: linear-gradient(120deg, var(--midnight-green) 0%, var(--tiffany-blue) 100%);
    border-radius: 18px;
    margin: 40px auto 0 auto;
    max-width: 600px;
    box-shadow: 0 4px 24px rgba(58,7,31,0.18);
    padding: 40px 30px 30px 30px;
    color: var(--rich-black);
}
.contact-container h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: var(--rich-black);
    text-shadow: 1px 2px 8px var(--dark-cyan);
}
.contact-info {
    margin-bottom: 32px;
}
.contact-info p {
    color: var(--midnight-green);
    font-size: 1.08rem;
    margin: 8px 0;
}
.contact-hero-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0 0;
    font-size: 1.08rem;
    width: 100%;
    max-width: 420px;
}
.contact-hero-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--midnight-green);
    background: #f8fafc;
    border-radius: 8px;
    padding: 10px 16px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.contact-hero-list li:hover {
    background: var(--gamboge);
    color: #111;
}
.contact-hero-list i {
    color: var(--gamboge);
    font-size: 1.2rem;
    min-width: 22px;
}

/* MEDIA QUERIES */
@media (max-width: 700px) {
    .contact-hero-list {
        font-size: 0.98rem;
        max-width: 100%;
    }
    .contact-hero-list li {
        padding: 8px 8px;
    }
}


/* HERO SECTION */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    background: linear-gradient(120deg, var(--midnight-green) 0%, var(--tiffany-blue) 100%);
    border-radius: 18px;
    margin: 40px auto 0 auto;
    max-width: 900px;
    box-shadow: 0 4px 24px rgba(58,7,31,0.18);
    padding: 40px 20px;
    color: var(--rich-black);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--gamboge) 0%, transparent 70%);
    opacity: 0.18;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--tiffany-blue) 0%, transparent 70%);
    opacity: 0.13;
    z-index: 0;
}
.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--rich-black);
    text-shadow: none;
    z-index: 1;
}
.hero p {
    font-size: 1.15rem;
    max-width: 600px;
    color: var(--rich-black);
    z-index: 1;
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 0 24px 0;
}
.hero-text {
    flex: 1 1 0;
}
.hero-image {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image img {
    max-width: 420px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    object-fit: cover;
}
/* MEDIA QUERIES */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        gap: 24px;
        padding: 24px 0 16px 0;
    }
    .hero-image img {
        max-width: 100%;
    }
}

/* FEATURES SECTION */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}
.feature {
    background: var(--vanilla);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 95, 115, 0.10), 0 1.5px 0 var(--tiffany-blue);
    padding: 24px 18px 18px 18px;
    flex: 1 1 260px;
    min-width: 220px;
    max-width: 320px;
    text-align: center;
    color: var(--rich-black);
    border: 2px solid var(--midnight-green);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--gamboge) 0%, transparent 70%);
    opacity: 0.13;
    z-index: 0;
}
.feature:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px var(--midnight-green);
    border-color: var(--gamboge);
}
.feature h3 {
    color: var(--dark-cyan);
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    z-index: 1;
    position: relative;
}
.feature p {
    color: var(--midnight-green);
    font-size: 1rem;
    z-index: 1;
    position: relative;
}
.feature-icon {
    font-size: 2.1rem;
    color: var(--gamboge);
    margin-bottom: 8px;
    display: block;
}



/* CONTACT FORM SECTION */
.contact-form-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 0;
    background: linear-gradient(120deg, var(--tiffany-blue) 0%, var(--midnight-green) 100%);
}
.contact-form {
    background: linear-gradient(120deg, var(--midnight-green) 0%, var(--tiffany-blue) 100%);
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-form label i {
    color: var(--gamboge);
    margin-right: 6px;
    font-size: 1.1rem;
    vertical-align: middle;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.btn-submit {
    background: var(--gamboge);
    color: var(--midnight-green);
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.btn-submit:hover {
    background: var(--alloy-orange);
    color: var(--vanilla);
    box-shadow: 0 4px 18px 0 rgba(255, 193, 7, 0.25), 0 2px 8px rgba(0,0,0,0.08);
}
.btn-submit i {
    margin-right: 6px;
    font-size: 1.1rem;
    vertical-align: middle;
}

/* CONTACT FORM */
form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
label {
    font-weight: 500;
    color: var(--gamboge);
}
input, textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--midnight-green);
    font-size: 1rem;
    background: var(--vanilla);
    color: var(--rich-black);
    resize: vertical;
}
input:focus, textarea:focus {
    outline: none;
    border-color: var(--dark-cyan);
}
button {
    background: var(--gamboge);
    color: var(--rich-black);
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
button:hover {
    background: var(--alloy-orange);
    color: var(--vanilla);
}


/* Forms */
  .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
  }
  
  .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  .php-email-form .error-message br+br {
    margin-top: 25px;
  }
  
  .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }

/* ADMISSIONS SECTION */
.hero#admissions {
    background: linear-gradient(120deg, var(--gamboge) 0%, var(--vanilla) 100%);
    padding: 0;
    margin-top: 48px;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    position: relative;
    overflow: hidden;
}
.admissions-content {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.92);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 48px 36px 40px 36px;
    text-align: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(2px);
}
.admissions-content h2 {
    color: var(--midnight-green);
    font-size: 2.3rem;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.admissions-content p {
    font-size: 1.18rem;
    margin-bottom: 22px;
    color: var(--rich-black);
}
.admissions-benefits {
    text-align: left;
    margin: 0 auto 22px auto;
    padding: 0 0 0 22px;
    max-width: 520px;
}
.admissions-benefits li {
    margin-bottom: 14px;
    font-size: 1.12rem;
    color: var(--dark-cyan);
    line-height: 1.7;
    position: relative;
    padding-left: 18px;
}
.admissions-benefits li::before {
    content: '\2713';
    color: var(--gamboge);
    font-size: 1.1rem;
    position: absolute;
    left: 0;
    top: 0;
}
.admissions-cta {
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--midnight-green);
    margin-top: 22px;
    background: var(--vanilla);
    padding: 14px 0 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: inline-block;
    width: 100%;
}
.hero#admissions::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: rgba(255, 193, 7, 0.18);
    border-radius: 50%;
    z-index: 1;
}
.hero#admissions::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: rgba(0, 150, 136, 0.10);
    border-radius: 50%;
    z-index: 1;
}
@media (max-width: 700px) {
    .contact-container {
        padding: 24px 8px;
    }
    .hero {
        min-height: 220px;
        padding: 24px 8px;
    }
    .features {
        flex-direction: column;
        gap: 18px;
    }
    .feature {
        min-width: unset;
        max-width: unset;
    }
    .site-logo {
        max-width: 64px;
        margin-bottom: 8px;
    }
    .admissions-content {
        padding: 22px 8px 18px 8px;
    }
    .admissions-benefits {
        padding-left: 8px;
        
    }
    .hero#admissions {
        margin-top: 28px;
        border-radius: 10px;
    }
}

/* SPONSORS SECTION */
.sponsors {
    background: #f9f9f9;
    padding: 60px 0 40px 0;
    text-align: center;
    border-top: 2px solid #eee;
    margin-top: 40px;
}
.sponsors h2 {
    font-size: 2.2rem;
    color: var(--gamboge, #ffb300);
    margin-bottom: 32px;
    font-weight: 700;
}
.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 24px;
}
.sponsor-logos a {
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 12px;
    background: #fff;
    padding: 12px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.sponsor-logos a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.sponsor-logos img {
    max-height: 60px;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(0.2) contrast(1.1);
    transition: filter 0.2s;
}
.sponsor-logos a:hover img {
    filter: none;
}
.sponsors-thankyou {
    color: #666;
    font-size: 1.1rem;
    margin-top: 12px;
}

@media (max-width: 600px) {
    .sponsor-logos {
        gap: 20px;
    }
    .sponsor-logos img {
        max-height: 40px;
        max-width: 120px;
    }
    .sponsors {
        padding: 40px 0 24px 0;
    }
}

/* FOOTER */
footer {
    background: var(--midnight-green);
    color: var(--vanilla);
    padding: 32px 0 16px 0;
    margin-top: 48px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.04);
}
.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-brand img {
    height: 36px;
    border-radius: 6px;
    background: #fff;
    padding: 2px;
}
.footer-brand span {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    color: var(--vanilla);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--gamboge);
}
.footer-copy {
    font-size: 0.98rem;
    color: #e0e0e0;
    margin-top: 8px;
}
@media (max-width: 700px) {
    .footer-content {
        padding: 0 12px;
    }
    .footer-links {
        gap: 12px;
    }
    .footer-brand span {
        font-size: 1rem;
    }
}

/* Donate Button Shadow Light Effect */
.donate-btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--gamboge, #ffb300) 70%, #ffd966 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 14px 36px;
    font-size: 1.15rem;
    margin-top: 18px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255,179,0,0.10);
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    letter-spacing: 0.5px;
}
.donate-btn:hover, .donate-btn:focus {
    background: linear-gradient(90deg, #e6a800 70%, #ffe066 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(255,179,0,0.18);
    transform: translateY(-2px) scale(1.03);
    outline: none;
}
@media (max-width: 600px) {
    .donate-btn {
        font-size: 1rem;
        padding: 12px 18px;
    }
}

/* FUNDING SECTION */
.funding {
    background: #fffbe7;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(255, 179, 0, 0.07);
    margin: 48px auto 0 auto;
    max-width: 700px;
    padding: 40px 28px 32px 28px;
    text-align: center;
    border: 1.5px solid #ffe3a3;
}
.funding h2 {
    color: var(--gamboge, #ffb300);
    font-size: 2rem;
    margin-bottom: 18px;
    font-weight: 700;
}
.funding p {
    color: #6a5d2f;
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0;
}
.funding ul {
    list-style: none;
    padding: 0;
    margin: 24px auto 0 auto;
    max-width: 500px;
    text-align: left;
}
.funding ul li {
    background: #fff7d1;
    border-radius: 10px;
    margin-bottom: 14px;
    padding: 16px 18px 14px 44px;
    position: relative;
    font-size: 1.08rem;
    color: #6a5d2f;
    box-shadow: 0 1px 6px rgba(255, 179, 0, 0.06);
    transition: box-shadow 0.2s;
}
.funding ul li:before {
    content: '\1F4AA'; /* flexed biceps emoji */
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 1.2em;
    color: var(--gamboge, #ffb300);
    opacity: 0.85;
}
.funding ul li strong {
    color: var(--gamboge, #ffb300);
    font-weight: 700;
}
.funding ul li:last-child {
    margin-bottom: 0;
}
@media (max-width: 600px) {
    .funding {
        padding: 24px 10px 18px 10px;
        max-width: 98vw;
    }
    .funding h2 {
        font-size: 1.3rem;
    }
    .funding p {
        font-size: 1rem;
    }
    .funding ul {
        max-width: 98vw;
    }
    .funding ul li {
        font-size: 0.98rem;
        padding: 12px 10px 12px 38px;
    }
    .funding ul li:before {
        left: 8px;
        top: 12px;
        font-size: 1em;
    }
}

/* VOLUNTEER SIGNUP SECTION */
.volunteer-signup {
    background: #f9f9f9;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    max-width: 600px;
    margin: 48px auto 40px auto;
    padding: 40px 28px 32px 28px;
    text-align: center;
    border: 1.5px solid #eee;
}
.volunteer-signup h2 {
    color: var(--gamboge, #ffb300);
    font-size: 2rem;
    margin-bottom: 24px;
    font-weight: 700;
}
.volunteer-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
}
.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.form-group label {
    font-weight: 600;
    color: var (--gamboge, #ffb300);
    margin-bottom: 2px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #ffe3a3;
    border-radius: 7px;
    font-size: 1rem;
    background: #fffbe7;
    color: #6a5d2f;
    transition: border 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gamboge, #ffb300);
    outline: none;
}
.volunteer-btn {
    background: var(--gamboge, #ffb300);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 7px;
    padding: 12px 0;
    font-size: 1.1rem;
    margin-top: 10px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255,179,0,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
.volunteer-btn:hover {
    background: #e6a800;
    box-shadow: 0 4px 16px rgba(255,179,0,0.13);
}

@media (max-width: 600px) {
    .volunteer-signup {
        padding: 24px 8px 18px 8px;
        max-width: 98vw;
    }
    .volunteer-signup h2 {
        font-size: 1.3rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.98rem;
    }
    .volunteer-btn {
        font-size: 1rem;
    }
}

/* DONATE SECTION */
.donate-section {
    background: #fffbe7;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(255, 179, 0, 0.07);
    max-width: 600px;
    margin: 48px auto 40px auto;
    padding: 40px 28px 32px 28px;
    text-align: center;
    border: 1.5px solid #ffe3a3;
}
.donate-section h2 {
    color: var(--gamboge, #ffb300);
    font-size: 2rem;
    margin-bottom: 24px;
    font-weight: 700;
}
.donate-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 18px;
}
.donate-form .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.donate-form label {
    font-weight: 600;
    color: #6a5d2f;
    margin-bottom: 2px;
}
.donate-form input,
.donate-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #ffe3a3;
    border-radius: 7px;
    font-size: 1rem;
    background: #fff;
    color: #6a5d2f;
    transition: border 0.2s;
}
.donate-form input:focus,
.donate-form textarea:focus {
    border-color: var(--gamboge, #ffb300);
    outline: none;
}
.donate-btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--gamboge, #ffb300) 70%, #ffd966 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 14px 36px;
    font-size: 1.15rem;
    margin-top: 18px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255,179,0,0.10);
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    letter-spacing: 0.5px;
}
.donate-btn:hover, .donate-btn:focus {
    background: linear-gradient(90deg, #e6a800 70%, #ffe066 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(255,179,0,0.18);
    transform: translateY(-2px) scale(1.03);
    outline: none;
}
@media (max-width: 600px) {
    .donate-btn {
        font-size: 1rem;
        padding: 12px 18px;
    }
}
.donate-info {
    color: #6a5d2f;
    font-size: 1.08rem;
    margin-top: 18px;
}
.donate-info a {
    color: var(--gamboge, #ffb300);
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 600px) {
    .donate-section {
        padding: 24px 8px 18px 8px;
        max-width: 98vw;
    }
    .donate-section h2 {
        font-size: 1.3rem;
    }
    .donate-form input,
    .donate-form textarea {
        font-size: 0.98rem;
    }
    .donate-btn {
        font-size: 1rem;
    }
    .donate-info {
        font-size: 0.98rem;
    }
}

/* MISSION SECTION */
.mission {
    background: #f6faff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0, 123, 255, 0.07);
    max-width: 700px;
    margin: 48px auto 40px auto;
    padding: 40px 28px 32px 28px;
    text-align: center;
    border: 1.5px solid #b3e0ff;
}
.mission h2 {
    color: #0077cc;
    font-size: 2rem;
    margin-bottom: 18px;
    font-weight: 700;
}
.mission p {
    color: #2d3a4a;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.mission ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 480px;
    text-align: left;
}
.mission ul li {
    background: #e6f4ff;
    border-radius: 10px;
    margin-bottom: 14px;
    padding: 14px 18px 14px 44px;
    position: relative;
    font-size: 1.08rem;
    color: #2d3a4a;
    box-shadow: 0 1px 6px rgba(0, 123, 255, 0.06);
}
.mission ul li:before {
    content: '\1F4A1'; /* lightbulb emoji */
    position: absolute;
    left: 16px;
    top: 14px;
    font-size: 1.2em;
    color: #0077cc;
    opacity: 0.85;
}
.mission ul li:last-child {
    margin-bottom: 0;
}
@media (max-width: 600px) {
    .mission {
        padding: 24px 8px 18px 8px;
        max-width: 98vw;
    }
    .mission h2 {
        font-size: 1.3rem;
    }
    .mission p {
        font-size: 1rem;
    }
    .mission ul {
        max-width: 98vw;
    }
    .mission ul li {
        font-size: 0.98rem;
        padding: 10px 10px 10px 36px;
    }
    .mission ul li:before {
        left: 8px;
        top: 10px;
        font-size: 1em;
    }
}

/* --- Programs Section Styling --- */
.programs {
    background: #f8fafc;
    padding: 60px 0 40px 0;
    text-align: center;
}
.programs h2 {
    font-size: 2.5rem;
    color: var(--gamboge, #ffb300);
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.program-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.program {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    width: 320px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
}
.program:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    z-index: 2;
}
.program-icon {
    font-size: 2.7rem;
    color: var(--gamboge, #ffb300);
    margin-bottom: 1.1rem;
    background: #fffbe6;
    border-radius: 50%;
    padding: 0.7rem;
    box-shadow: 0 2px 8px rgba(255,179,0,0.08);
}
.program h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: #222;
}
.program p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 900px) {
    .program-list {
        gap: 1.2rem;
    }
    .program {
        width: 90vw;
        max-width: 370px;
    }
}
@media (max-width: 600px) {
    .program-list {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .program {
        width: 98vw;
        max-width: 99vw;
        min-height: 0;
        padding: 1.3rem 0.7rem 1.1rem 0.7rem;
    }
    .programs h2 {
        font-size: 2rem;
    }
}
