/* GLOBAL STYLES */
    * {
      box-sizing: border-box;
      padding: 0;
      margin: 0;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      width: 100%;
      line-height: 1.6;
      color: #333;
    }

    h1 {
      font-size: 2.5rem;
      color: #2a2a2a;
      margin-bottom: 1rem;
      text-align:center;
    }

    h2 {
      font-size: 2rem;
      color: #2a2a2a;
      margin-bottom: 1rem;
    }

    h3 {
      font-size: 1.5rem;
      color: #2a2a2a;
      margin-bottom: 0.5rem;
    }

    p {
      font-size: 1.1rem;
      color: #1a1818;
      line-height: 1.8;
    }

    a {
      text-decoration: none;
      transition: all 0.3s ease;
    }

    /* HEADER WITH HAMBURGER MENU */
    #header-container {
      background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo-wrapper {
      flex: 0 0 auto;
    }

    .logo-image {
      height: 70px;
      width: auto;
    }

    .header-wrapper {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .header-wrapper a {
      color: white;
      font-size: 1.1rem;
      font-weight: 500;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      transition: all 0.3s ease;
    }

    .header-wrapper a:hover {
      background-color: rgba(255,255,255,0.2);
      transform: translateY(-2px);
    }

    /* HAMBURGER MENU */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      z-index: 101;
    }

    .hamburger span {
      width: 30px;
      height: 3px;
      background-color: white;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    /* HERO SECTION */
    .hero-section {
      background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/OCT30-9.jpg');
      background-size:cover;
      background-position:center;
      background-repeat: no-repeat;
      color: white;
      text-align: center;
      padding: 6rem 2rem;
    }

    .hero-section h1 {
      color: white;
      font-size: 3rem;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .hero-section p {
      color: white;
      font-size: 1.3rem;
      margin-bottom: 2rem;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .cta-button {
      display: inline-block;
      background-color: #d4af37;
      color: white;
      padding: 1rem 2.5rem;
      font-size: 1.2rem;
      font-weight: bold;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(212,175,55,0.4);
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background-color: #b8941f;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(212,175,55,0.6);
    }

    /* SECTIONS */
    section {
      padding: 4rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-divider {
      border: none;
      border-top: 2px dotted #d3d3d3;
      margin: 3rem 0;
    }

    /* ABOUT SECTION */
    #about {
      text-align: center;
      background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 50%, #f9f9f9 100%);
    }

    /* Mission and Vision Cards - Side by Side */
    .mission-vision-wrapper {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
      max-width: 900px;
      margin: 3rem auto;
    }

    .mission-vision-card {
      background: white;
      padding: 2.5rem 2rem;
      border-radius: 20px;
      box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
      transition: all 0.4s ease;
      border: 2px solid transparent;
      text-align: center;
    }

    .mission-vision-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    }

    .card-icon {
      width: 90px;
      height: 90px;
      margin: 0 auto 1.5rem;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
      border: 3px solid #d4af37;
    }

    .card-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      
    }

    .mission-vision-card h3 {
      color: #d4af37;
      font-size: 1.6rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .mission-vision-card p {
      color: #2a2a2a;
      font-size: 1.05rem;
      line-height: 1.7;
    }

    /* Main About Content */
    .about-content-wrapper {
      max-width: 1100px;
      margin: 4rem auto;
      background: white;
      padding: 3rem;
      border-radius: 20px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    }

    .about-main-text {
      text-align: left;
    }

    .about-main-text h2 {
      color: #d4af37;
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2.2rem;
    }

    .intro-text {
      font-size: 1.15rem;
      line-height: 1.9;
      margin-bottom: 1.5rem;
      color: #333;
    }

    /* Impact Section with Grid */
    .impact-section {
      margin: 3rem 0;
      padding: 2.5rem;
      background: linear-gradient(135deg, #f9f9f9 0%, #fff5e6 100%);
      border-radius: 15px;
      border-left: 5px solid #d4af37;
    }

    .impact-section h3 {
      color: #d4af37;
      text-align: center;
      margin-bottom: 2rem;
      font-size: 1.8rem;
    }

    .impact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
    }

    .impact-item {
      background: white;
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 3px 15px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      text-align: center;
    }

    .impact-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2);
    }

    .impact-icon {
      font-size: 2.5rem;
      display: block;
      margin-bottom: 1rem;
    }

    .impact-item p {
      font-size: 1rem;
      color: #2a2a2a;
      margin: 0;
    }

    /* Work Section */
    .work-section {
      margin: 3rem 0;
      padding: 2rem;
      background: #f9f9f9;
      border-radius: 15px;
    }

    .work-section h3 {
      color: #d4af37;
      margin-bottom: 1rem;
      font-size: 1.6rem;
    }

    

    /* Involvement Section */
    .involvement-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2.5rem;
      max-width: 1100px;
      margin: 4rem auto;
    }

    .why-matters, .get-involved {
      background: white;
      padding: 2.5rem;
      border-radius: 20px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);
      text-align: left;
    }

    .why-matters h3, .get-involved h3 {
      color: #d4af37;
      margin-bottom: 1.5rem;
      font-size: 1.6rem;
    }

    .why-matters ul {
      list-style: none;
      padding: 0;
    }

    .why-matters li {
      padding: 0.8rem 0;
      padding-left: 2rem;
      position: relative;
      line-height: 1.6;
    }

    .why-matters li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #d4af37;
      font-weight: bold;
      font-size: 1.3rem;
    }

    .involvement-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .involvement-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      padding: 1.2rem 2rem;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      transition: all 0.3s ease;
      text-align: center;
    }

    .volunteer-btn {
      background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
      color: white;
      box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    }

    .volunteer-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 25px rgba(76, 175, 80, 0.5);
    }

    .donate-btn {
      background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
      color: white;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    .donate-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    }

    .btn-icon {
      font-size: 1.4rem;
    }

    .involvement-text {
      text-align: center;
      font-style: italic;
      color: #666;
    }

    /* Notable Wrapper Improved */
    .notable-wrapper {
      max-width: 1100px;
      margin: 4rem auto;
      padding: 3rem;
      background: white;
      border-radius: 20px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    }

    .notable-wrapper h2 {
      color: #d4af37;
      text-align: center;
      margin-bottom: 3rem;
    }

    .notable-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2.5rem;
    }

    .notable-item {
      text-align: center;
    }

    .founder-image {
      width: 100%;
      height: 350px;
      object-fit:cover;
      object-position:center top;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.15);
      margin-bottom: 1.5rem;
      transition: transform 0.3s ease;
    }

    .founder-image:hover {
      transform: scale(1.03);
    }

    .notable-item p {
      font-size: 1.05rem;
      color: #2a2a2a;
      line-height: 1.7;
    }

     /* LOGO MEANING */
    .logo-meaning {
      background: white;
      padding: 3rem;
      border-radius: 15px;
      margin: 3rem 0;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .about-logo {
      max-width: 400px;
      height: auto;
      margin: 2rem auto;
      display: block;
      border-radius: 10px;
    }

    .logo-description {
      display: grid;
      gap: 1.5rem;
      margin-top: 2rem;
      text-align: left;
    }

    .logo-item {
      padding: 1.5rem;
      background: #f9f9f9;
      border-left: 4px solid #d4af37;
      border-radius: 5px;
    }

    .logo-item strong {
      color: #d4af37;
      display: block;
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
    }
    
    /* VOLUNTEER SECTION */
    .volunteer {
      margin: 3rem 0;
      text-align: center;
    }

    .volunteer-header{
      background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
      color: white;
      padding: 2rem;
      border-radius: 15px;
      margin: 2rem 0;
      text-align: center;
    }

    .volunteer-header p{
      color: white;
      font-size: 1.5rem;
    }

    .volunteer-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      min-height: 200px;
      margin: 1rem;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      object-fit: cover;
    }

   .join-us-container {
      text-align: center;
      margin: 3rem auto;
      max-width: 1200px;
    }

    .join-us {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .join-us > div {
      flex: 1;
      min-width: 300px; 
    }

    .join-us-container h2 {
      text-align: center;
      margin-bottom: 2rem; 
      font-size: 2rem;
    }

    .join-us-image {
      width: 100%;      
      max-width: 400px; 
      height: auto;     
      display: block;
      margin: 0 auto; 
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .join-us-text {
      font-size: 1.2rem;
      color: #1a1818;
      line-height: 1.8;
      text-align: center; 
    }

    .join-button {
      display: inline-block;
      background-color: #d4af37;
      color: white;
      padding: 1rem 2rem;
      font-size: 1.2rem;
      font-weight: bold;
      border-radius: 50px;
      margin-top: 2rem; 
      box-shadow: 0 4px 15px rgba(212,175,55,0.4);
      transition: all 0.3s ease;
    }

    .join-button:hover {
      background-color: #b8941f;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(212,175,55,0.6);
    }

    /* VOLUNTEER FORM SECTION */
    .volunteer-form {
      background: white;
      padding: 3rem;
      border-radius: 15px;
      margin: 3rem 0;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .volunteer-form h2 {
      color: #d4af37;
      margin-bottom: 2rem;
      text-align: center;
    }
   
    .volunteer-wrapper {
      max-width: 600px;
      margin: 0 auto;
    }

    .volunteer-form form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .volunteer-form label {
      color: #2a2a2a;
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 0.3rem;
      display: block;
    }

    .volunteer-form input,
    .volunteer-form textarea {
      width: 100%;
      padding: 0.8rem;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-size: 1rem;
      font-family: inherit;
      transition: border-color 0.3s ease;
    }

    .volunteer-form input:focus,
    .volunteer-form textarea:focus {
      outline: none;
      border-color: #d4af37;
    }

    .volunteer-form textarea {
      resize: vertical;
      min-height: 100px;
    }

    .volunteer-form button[type="submit"] {
      background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
      color: white;
      padding: 1rem 2rem;
      font-size: 1.1rem;
      font-weight: bold;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(212,175,55,0.4);
    }

    .volunteer-form button[type="submit"]:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(212,175,55,0.6);
    }

    .volunteer-form button[type="submit"]:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    .form-message {
      padding: 1.5rem;
      border-radius: 10px;
      margin-top: 1.5rem;
      text-align: center;
      font-weight: 600;
      display: none;
    }

    .form-message.success {
      background-color: #d4edda;
      color: #155724;
      border: 2px solid #c3e6cb;
      display: block;
    }

    .form-message.error {
      background-color: #f8d7da;
      color: #721c24;
      border: 2px solid #f5c6cb;
      display: block;
    }

    /* PROGRAMS SECTION */
    #programs {
      background-color: white;
    }

    .program-wrapper {
      margin: 3rem 0;
    }

    .program1-header, .program2-header {
      background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
      color: white;
      padding: 2rem;
      border-radius: 15px;
      margin: 2rem 0;
      text-align: center;
    }

    .program1-header h2, .program2-header h2 {
      color: white;
      font-size: 1.8rem;
    }

    .program1-text, .program2-text, .program-text {
      padding: 2rem;
      background: #f9f9f9;
      border-radius: 10px;
      margin: 2rem 0;
      text-align: left;
    }

    .program1-text a, .program2-text a {
      color: #d4af37;
      font-weight: bold;
      text-decoration: underline;
    }

    .image-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      display: flex; align-items: center; 
      justify-content: center
    }

    .gallery-item img {
      width: 100%;             
      height: 250px;        
      object-fit: cover;        
      object-position: center;  
      display: block;           
    }

    .image-gallery-three{
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 1.0rem;
      margin: 2rem 0;
    }
    

    /* TWO-COLUMN GALLERY FIX */
    .image-gallery.two-column {
      grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .gallery-item:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }

 

    /* Two-column gallery images - larger height */
    @media (min-width: 768px) {
      .image-gallery.two-column .gallery-item img {
        height: 400px;
      }
    }

    .impact-text {
      background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
      color: white;
      padding: 2rem;
      border-radius: 15px;
      margin: 2rem 0;
      text-align: center;
    }

    .impact-text p {
      color: white;
      font-size: 1.2rem;
    }

    /* Collapsible Text */
    .collapsible-text {
      position: relative;
      max-width: 800px;
      margin: 1rem auto;
    }

    .text-content {
      max-height: 180px;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .text-content.expanded {
      max-height: 2000px;
    }

    .text-content ul {
      margin-left: 2rem;
      margin-bottom: 1rem;
    }

    .text-content li {
      margin-bottom: 0.5rem;
    }

    .read-more-btn {
      display: block;
      margin: 10px auto;
      background-color: #d4af37;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 25px;
      cursor: pointer;
      font-size: 16px;
      transition: all 0.3s ease;
    }

    .read-more-btn:hover {
      background-color: #b8941f;
      transform: translateY(-2px);
    }

    /* DONATE SECTION */
    #donate {
      background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
      color: white;
      text-align: center;
      padding: 5rem 2rem;
    }

    #donate h2 {
      color: white;
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    #donate p {
      color: white;
      font-size: 1.3rem;
      margin-bottom: 2rem;
    }

    .donate-button {
      background: white;
      color: #d4af37;
      padding: 1.2rem 3rem;
      font-size: 1.3rem;
      font-weight: bold;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      cursor: pointer;
      border: none;
    }

    .donate-button:hover {
      background: #f5f5f5;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    .account-details {
      margin-top: 50px;
      margin-bottom:50px;
    }

    .account-details h2 {
      color: white;
      margin-bottom: 2rem;
      text-align: center;
    }

    .account-cards-wrapper {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .account-card {
      background: #e9c85c;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.2);
      text-align: left;
    }

    .account-card h3 {
      color: white;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.3rem;
    }

    .account-card p {
      color: #2a2a2a;
      margin: 0.5rem 0;
      font-size: 1rem;
    }

    .bank-logo {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    /* CONTACT SECTION */
    #contact {
      background-color: white;
      text-align: center;
    }

    .contact-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin: 2rem 0;
    }

    .contact-card {
      background: white;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .contact-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }

    .contact-card h3 {
      color: #d4af37;
      margin-bottom: 1rem;
    }

    .contact-card a {
      color: #2a2a2a;
    }

    /* FOOTER */
    footer {
      background-color: #2a2a2a;
      color: white;
      text-align: center;
      padding: 2rem;
    }

    footer p {
      color: #ccc;
    }

   /* ========================================
   IMPROVED RESPONSIVE MEDIA QUERIES
   Replace the existing media queries section with this
   ======================================== */

/* LARGE DESKTOP (1200px and above) */
@media (min-width: 1200px) {
  /* Container & Spacing */
  section {
    max-width: 1400px;
    padding: 5rem 2rem;
  }

  /* Hero Section */
  .hero-section {
    padding: 7rem 2rem;
  }

  .hero-section h1 {
    font-size: 3.5rem;
  }

  .hero-section p {
    font-size: 1.5rem;
  }

  /* Typography Enhancements */
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  .about-main-text h2 {
    font-size: 2.5rem;
  }

  /* 4-column Image Galleries */
  .image-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .image-gallery-three {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .image-gallery.two-column {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Contact Section - 4 columns */
  .contact-info {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }

  /* Account Cards - 3 columns */
  .account-cards-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  /* Notable Grid - 3 columns */
  .notable-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .founder-image {
    height: 380px;
  }

  /* Impact Grid - 4 columns */
  .impact-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  /* Mission/Vision Cards */
  .mission-vision-wrapper {
    max-width: 1000px;
    gap: 3rem;
  }

  /* Involvement Section - 2 columns */
  .involvement-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  /* Content Wrappers */
  .about-content-wrapper,
  .latest-outreach,
  .notable-wrapper {
    padding: 3.5rem;
  }
}

/* LAPTOP/DESKTOP (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  /* Container & Spacing */
  section {
    max-width: 1140px;
    padding: 4rem 1.5rem;
  }

  /* Hero Section */
  .hero-section {
    padding: 6rem 1.5rem;
  }

  .hero-section h1 {
    font-size: 3rem;
  }

  .hero-section p {
    font-size: 1.3rem;
  }

  /* Typography */
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  /* 3-column Image Galleries */
  .image-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .image-gallery-three {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .image-gallery.two-column {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    height: 280px;
  }

  .image-gallery.two-column .gallery-item img {
    height: 380px;
  }

  /* Contact - 2 columns */
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Account Cards - 3 columns */
  .account-cards-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  /* Notable Grid - 3 columns */
  .notable-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .founder-image {
    height: 340px;
  }

  /* Impact Grid - 3 columns */
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  /* Mission/Vision - 2 columns */
  .mission-vision-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  /* Involvement - 2 columns */
  .involvement-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* TABLET (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  /* Header */
  #header-container {
    padding: 1rem 1.5rem;
  }

  .logo-image {
    height: 60px;
  }

  .header-wrapper {
    gap: 1.5rem;
  }

  .header-wrapper a {
    font-size: 1rem;
    padding: 0.5rem 0.8rem;
  }

  /* Hero Section */
  .hero-section {
    padding: 5rem 1.5rem;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section p {
    font-size: 1.2rem;
  }

  /* Sections */
  section {
    padding: 3rem 1.5rem;
  }

  /* Typography */
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  p {
    font-size: 1.05rem;
  }

  /* 2-column Galleries */
  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .image-gallery-three {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .gallery-item img {
    height: 300px;
  }

  .image-gallery.two-column .gallery-item img {
    height: 350px;
  }

  /* Mission/Vision - Single Column */
  .mission-vision-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-vision-card {
    padding: 2rem 1.5rem;
  }

  /* Content Wrappers */
  .about-content-wrapper,
  .latest-outreach,
  .notable-wrapper {
    padding: 2.5rem;
  }

  /* Impact Grid - 2 columns */
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
  }

  .impact-section {
    padding: 2rem;
  }

  /* Notable Grid - 2 columns */
  .notable-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .founder-image {
    height: 320px;
  }

  /* Logo Section */
  .logo-meaning {
    padding: 2rem;
  }

  .about-logo {
    max-width: 350px;
  }

  /* Join Us - Stacked */
  .join-us {
    flex-direction: column;
    gap: 1.5rem;
  }

  .join-us > div {
    min-width: 100%;
  }

  .join-us-image {
    max-width: 350px;
  }

  /* Volunteer */
  .volunteer-image {
    max-width: 250px;
  }

  /* Involvement - Single Column */
  .involvement-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Contact - 2 columns */
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Account Cards - 2 columns */
  .account-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Programs */
  .program1-header h2,
  .program2-header h2 {
    font-size: 1.5rem;
  }

  .program1-header,
  .program2-header {
    padding: 1.8rem;
  }

  .program1-text,
  .program2-text,
  .program-text {
    padding: 1.5rem;
  }

  /* Forms */
  .volunteer-form {
    padding: 2.5rem;
  }
}

/* MOBILE LANDSCAPE & SMALL TABLET (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  /* Activate Hamburger Menu */
  .hamburger {
    display: flex;
  }

  /* Header */
  #header-container {
    padding: 1rem;
  }

  .logo-image {
    height: 55px;
  }

  /* Mobile Navigation Menu */
  .header-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    z-index: 99;
  }

  .header-wrapper.active {
    right: 0;
  }

  .header-wrapper a {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: 8px;
  }

  /* Hero Section */
  .hero-section {
    padding: 4rem 1.5rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
  }

  /* Sections */
  section {
    padding: 2.5rem 1.5rem;
  }

  /* Typography */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1rem;
  }

  /* Galleries - 2 columns for standard, 1 for special */
  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .image-gallery.two-column {
    grid-template-columns: 1fr;
  }

  .image-gallery-three {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery-item img {
    height: 280px;
  }

  .image-gallery.two-column .gallery-item img {
    height: 320px;
  }

  /* Mission/Vision - Single Column */
  .mission-vision-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card-icon {
    width: 80px;
    height: 80px;
  }

  /* Content Wrappers */
  .about-content-wrapper,
  .latest-outreach,
  .notable-wrapper {
    padding: 2rem;
  }

  .about-main-text h2 {
    font-size: 1.8rem;
  }

  /* Impact Section */
  .impact-section {
    padding: 1.8rem;
  }

  .impact-section h3 {
    font-size: 1.5rem;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .impact-icon {
    font-size: 2.2rem;
  }

  /* Work Section */
  .work-section {
    padding: 1.8rem;
  }

  /* Notable Grid - 1 column */
  .notable-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-image {
    height: 300px;
  }

  /* Logo Section */
  .logo-meaning {
    padding: 1.8rem;
  }

  .about-logo {
    max-width: 300px;
  }

  /* Volunteer Section */
  .volunteer-header {
    padding: 1.8rem;
  }

  .volunteer-header p {
    font-size: 1.2rem;
  }

  .volunteer-image {
    max-width: 220px;
    margin: 0.8rem;
  }

  .join-us {
    flex-direction: column;
  }

  .join-us-image {
    max-width: 320px;
  }

  .join-us-text {
    font-size: 1.05rem;
  }

  /* Involvement Section */
  .involvement-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-matters,
  .get-involved {
    padding: 2rem;
  }

  .involvement-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  /* Forms */
  .volunteer-form {
    padding: 2rem;
  }

  .volunteer-form input,
  .volunteer-form textarea {
    padding: 0.75rem;
    font-size: 0.98rem;
  }

  /* Contact - 1 column */
  .contact-info {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  /* Account Cards - 1 column */
  .account-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Donate Section */
  #donate {
    padding: 4rem 1.5rem;
  }

  .donate-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
  }

  /* Programs */
  .program1-header,
  .program2-header {
    padding: 1.5rem;
  }

  .program1-header h2,
  .program2-header h2 {
    font-size: 1.4rem;
  }

  .program1-text,
  .program2-text,
  .program-text {
    padding: 1.3rem;
  }

  .impact-text {
    padding: 1.5rem;
  }

  .impact-text p {
    font-size: 1.05rem;
  }
}

/* MOBILE PORTRAIT (max-width: 480px) */
@media (max-width: 480px) {
  /* Activate Hamburger Menu */
  .hamburger {
    display: flex;
  }

  /* Header */
  #header-container {
    padding: 0.8rem 1rem;
  }

  .logo-image {
    height: 50px;
  }

  /* Mobile Navigation */
  .header-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 280px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    z-index: 99;
  }

  .header-wrapper.active {
    right: 0;
  }

  .header-wrapper a {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 0.8rem;
    border-radius: 8px;
  }

  /* Hero Section */
  .hero-section {
    padding: 3rem 1rem;
  }

  .hero-section h1 {
    font-size: 1.7rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  /* Sections */
  section {
    padding: 2rem 1rem;
  }

  /* Typography */
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Single Column Galleries */
  .image-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .image-gallery.two-column {
    grid-template-columns: 1fr;
  }

  .image-gallery-three {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-item img {
    height: 250px;
  }

  .image-gallery.two-column .gallery-item img {
    height: 280px;
  }

  /* Mission/Vision Cards */
  .mission-vision-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mission-vision-card {
    padding: 2rem 1.5rem;
  }

  .card-icon {
    width: 70px;
    height: 70px;
  }

  /* Content Wrappers */
  .about-content-wrapper,
  .latest-outreach,
  .notable-wrapper {
    padding: 1.5rem;
  }

  .about-main-text h2 {
    font-size: 1.6rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  /* Impact Section */
  .impact-section {
    padding: 1.5rem;
  }

  .impact-section h3 {
    font-size: 1.4rem;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .impact-icon {
    font-size: 2rem;
  }

  /* Work Section */
  .work-section {
    padding: 1.5rem;
  }

  .work-section h3 {
    font-size: 1.3rem;
  }

  /* Notable Section */
  .notable-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .founder-image {
    height: 280px;
  }

  .notable-item p {
    font-size: 0.95rem;
  }

  /* Logo Section */
  .logo-meaning {
    padding: 1.5rem;
  }

  .about-logo {
    max-width: 250px;
  }

  .logo-item {
    padding: 1rem;
  }

  .logo-item strong {
    font-size: 1.1rem;
  }

  /* Volunteer Section */
  .volunteer-header {
     margin:1rem;
    padding: 1.5rem;
  }

  .volunteer-header p {
    font-size: 1.1rem;
  }

  .volunteer-image {
    max-width: 80%;
    margin: 1.5rem;
  }

  /* Join Us Section */
  .join-us {
    flex-direction: column;
    gap: 1rem;
  }

  .join-us > div {
    min-width: 100%;
  }

  .join-us-image {
    max-width: 80%;
  }

  .join-us-text {
     margin:0.5rem;
    font-size: 1rem;
  }

  .join-button {
    padding: 0.9rem 1.8rem;
    font-size: 1.1rem;
  }

  /* Involvement Section */
  .involvement-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-matters,
  .get-involved {
    padding: 1.5rem;
  }

  .why-matters h3,
  .get-involved h3 {
    font-size: 1.3rem;
  }

  .why-matters li {
    font-size: 0.95rem;
  }

  .involvement-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .btn-icon {
    font-size: 1.2rem;
  }

  /* Forms */
  .volunteer-form {
    padding: 1.5rem;
  }

  .volunteer-form h2 {
    font-size: 1.3rem;
  }

  .volunteer-form label {
    font-size: 0.9rem;
  }

  .volunteer-form input,
  .volunteer-form textarea {
    padding: 0.6rem;
    font-size: 0.9rem;
  }

  .volunteer-form button[type="submit"] {
    padding: 0.8rem 1.3rem;
    font-size: 0.95rem;
  }

  .form-message {
    padding: 1.2rem;
    font-size: 0.9rem;
  }

  /* Contact Section */
  .contact-card {
    padding: 1.2rem;
  }

  .contact-card h3 {
    font-size: 1.1rem;
  }

  .contact-card p {
    font-size: 0.85rem;
  }

  /* Donate Section */
  #donate {
    padding: 3rem 0.8rem;
  }

  #donate h2 {
    font-size: 1.8rem;
  }

  #donate p {
    font-size: 1rem;
  }

  .donate-button {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .account-details {
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .account-details h2 {
    font-size: 1.5rem;
  }

  .account-card {
    padding: 1.2rem;
  }

  .account-card h3 {
    font-size: 1rem;
  }

  .account-card p {
    font-size: 0.85rem;
  }

  .bank-logo {
    width: 32px;
    height: 32px;
  }

  /* Programs */
  .program1-header,
  .program2-header {
    padding: 1.2rem;
  }

  .program1-header h2,
  .program2-header h2 {
    font-size: 1.1rem;
  }

  .program1-text,
  .program2-text,
  .program-text {
    padding: 1rem;
  }

  .program1-text p,
  .program2-text p,
  .program-text p {
    font-size: 0.9rem;
  }

  .impact-text {
    padding: 1.2rem;
  }

  .impact-text p {
    font-size: 0.95rem;
  }

  .read-more-btn {
    padding: 7px 14px;
    font-size: 13px;
  }

  /* Footer */
  footer {
    padding: 1.2rem 0.8rem;
  }

  footer p {
    font-size: 0.85rem;
  }
}

/* ========================================
   LANDSCAPE ORIENTATION ADJUSTMENTS
   ======================================== */

/* Small devices in landscape mode */
@media (max-height: 500px) and (orientation: landscape) {
  .header-wrapper {
    gap: 1rem;
    padding: 1rem;
    justify-content: flex-start;
    overflow-y: auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .header-wrapper a {
    padding: 0.6rem;
    font-size: 1rem;
  }

  .hero-section {
    padding: 3rem 1rem;
  }

  .hero-section h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .hero-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .cta-button {
    padding: 0.7rem 1.5rem;
  }

  section {
    padding: 2rem 1rem;
  }
}

/* ========================================
   UTILITY CLASSES FOR BETTER CONTROL
   ======================================== */

/* Hide elements on mobile */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Hide elements on desktop */
@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

/* Text alignment utilities */
@media (max-width: 767px) {
  .text-center-mobile {
    text-align: center !important;
  }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

/* Improve touch targets on mobile */
@media (max-width: 767px) {
  button,
  a.cta-button,
  a.donate-button,
  a.join-button,
  .involvement-btn,
  .read-more-btn {
    min-height: 44px;
    min-width: 44px;
  }

  .header-wrapper a {
    min-height: 48px;
  }
}

/* Ensure focus states are visible */
@media (max-width: 767px) {
  a:focus,
  button:focus,
  input:focus,
  textarea:focus {
    outline: 3px solid #d4af37;
    outline-offset: 2px;
  }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

/* Reduce animations on small screens for better performance */
@media (max-width: 480px) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* Keep essential hover effects */
  .gallery-item:hover,
  .contact-card:hover,
  .mission-vision-card:hover {
    transform: none;
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


