.charity-buttons-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px; /* Adjust spacing between buttons */
    }
    
    .charity-about-btn {
        flex: 1; /* Makes buttons grow equally */
        min-width: 120px; /* Minimum width for buttons */
        text-align: center;
        padding: 10px 15px;
        /* Add your other button styles here */
    }
    
    /* Desktop - all buttons in one row */
    @media (min-width: 992px) {
        .charity-buttons-container {
            flex-direction: row;
        }
        .charity-about-btn {
            flex: 1;
        }
    }
    
    /* Tablet - buttons in two columns */
    @media (min-width: 768px) and (max-width: 991px) {
        .charity-buttons-container {
            flex-direction: row;
            flex-wrap: wrap;
        }
        .charity-about-btn {
            flex: 0 0 calc(50% - 10px); /* Two buttons per row with gap */
        }
    }
    
    /* Mobile - stacked vertically */
    @media (max-width: 767px) {
        .charity-buttons-container {
            flex-direction: column;
        }
        .charity-about-btn {
            width: 100%;
        }
    }

       /* Base button styles */
    .charity-about-btn {
        display: inline-block;
        padding: 10px 15px;
        margin: 5px;
        text-align: center;
        background: #f8f9fa;
        color: #333;
        border: 1px solid #ddd;
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .charity-about-btn:hover {
        background: #e9ecef;
    }
    
    /* Main buttons container */
    .charity-buttons-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    /* Program buttons wrapper (hidden by default) */
    .program-buttons-wrapper {
        display: none;
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #eee;
    }
    
    /* Desktop layout (≥992px) */
    @media (min-width: 992px) {
        .charity-buttons-container {
            flex-direction: row;
        }
        .charity-about-btn {
            flex: 1 0 auto;
            min-width: calc(25% - 15px); /* 4 buttons per row */
        }
        .program-buttons-wrapper .charity-about-btn {
            min-width: calc(33.333% - 15px); /* 3 program buttons per row */
        }
    }
    
    /* Tablet layout (768px-991px) */
    @media (min-width: 768px) and (max-width: 991px) {
        .charity-about-btn {
            min-width: calc(50% - 15px); /* 2 buttons per row */
        }
        .program-buttons-wrapper .charity-about-btn {
            min-width: calc(50% - 15px); /* 2 program buttons per row */
        }
    }
    
    /* Mobile layout (<768px) */
    @media (max-width: 767px) {
        .charity-buttons-container {
            flex-direction: column;
        }
        .charity-about-btn {
            width: 100%;
            margin: 5px 0;
        }
        .program-buttons-wrapper .charity-about-btn {
            width: 100%;
        }
    }

   /* Base Banner Styles */
  .charity-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .charity-banner-two-layer {
    position: relative;
    height: 100vh;
    max-height: 800px;
    min-height: 500px;
  }
  
  .banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .charity-transparent-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
  }
  
  .charity-banner-two-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    color: white;
    padding: 0 15px;
  }
  
  .banner-content {
    max-width: 100%;
    padding: 30px;
    /* background: rgba(0,0,0,0.3); */
    border-radius: 8px;
    margin-top: 50px;
  }
  
  /* Typography with responsive scaling */
  .charity-color {
    color: white;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    
    /* Fluid typography using viewport units */
    font-size: calc(24px + 2vw); /* Scales between 24px and 64px */
  }
  
  .banner-heading-line {
    display: block;
  }
  
  .banner-text {
    line-height: 1.6;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    
    /* Fluid typography */
    font-size: calc(14px + 0.5vw); /* Scales between 14px and 22px */
  }
  
  .banner-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: calc(12px + 0.3vw); /* Scales between 12px and 16px */
  }
  
  /* Responsive Adjustments */
  @media (max-width: 690px) {
    .banner-content {
      padding: 25px;
      margin-top: 100px;
    }
  }
  
  @media (max-width: 992px) {
    .charity-banner-two-layer {
      min-height: 450px;
    }
    
    .banner-content {
      padding: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .charity-banner-two-layer {
      min-height: 400px;
    }
    
    .charity-banner-two-caption {
      padding: 0 10px;
    }
    
    .banner-content {
      padding: 20px 15px;
      margin: 0 auto;
      text-align: center;
    }
    
    .charity-color {
      font-size: calc(20px + 2vw); /* Slightly smaller scaling */
      margin-bottom: 15px;
    }
    
    .banner-text {
      font-size: calc(13px + 0.5vw);
      margin-bottom: 20px;
    }
    
    .banner-btn {
      padding: 10px 20px;
    }
  }
  
  @media (max-width: 576px) {
    .charity-banner-two-layer {
      min-height: 350px;
      height: 80vh;
    }
    
    .charity-color {
      font-size: calc(18px + 2vw); /* Even smaller on mobile */
    }
    
    .banner-text {
      font-size: calc(12px + 0.5vw);
      margin-bottom: 15px;
    }
    
    .banner-content {
      padding: 15px;
      width: 95%;
    }
  }
  
  @media (max-width: 400px) {
    .charity-color {
      font-size: calc(16px + 2vw);
    }
    
    .banner-text {
      font-size: calc(11px + 0.5vw);
    }
    
    .banner-btn {
      padding: 8px 15px;
    }
  }

   .donate-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
  }
  .donate-btn {
    margin: 0;
  }

   .mobile-donate-btn {
    display: none;
  }

  /* Show only on mobile (typically < 768px) */
  @media (max-width: 767px) {
    .mobile-donate-container {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 40px;
    }
    .mobile-donate-btn {
      display: block;
      margin: 0;
    }
  }

 /* Remove bullet points from all lists */
  .charity-strip-info,
  .charity-strip-social,
  .navbar-nav,
  .dropdown-menu {
    list-style: none;
    padding-left: 0;
  }
  
  /* Desktop hover dropdown */
  @media (min-width: 768px) {
    .dropdown:hover .dropdown-menu {
      display: block;
    }
    
    .dropdown-menu {
      margin-top: 0; /* Remove gap between button and menu */
    }
  }
  
  /* Mobile styles */
  @media (max-width: 767px) {
    /* Reduce menu item spacing */
    .navbar-nav > li > a {
      padding: 10px 15px;
    }
    
    /* Style dropdown items */
    .dropdown-menu > li > a {
      padding: 8px 25px; /* Indent dropdown items */
      display: block;
    }
    
    /* Remove default Bootstrap mobile styling */
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
      color: #ffffff;
    }
    
    /* Add visual indicator for dropdown */
    .dropdown > a:after {
      content: '+';
      float: right;
      margin-left: 5px;
    }
    
    .dropdown.open > a:after {
      content: '-';
    }
  }

  /* Remove all bullet points from header lists */
#charity-header ul,
#charity-header li {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Specifically target navigation menus */
#charity-header .navbar-nav,
#charity-header .dropdown-menu,
#charity-header .charity-strip-info,
#charity-header .charity-strip-social {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Remove any remaining markers */
#charity-header li::before,
#charity-header li::after {
  content: none !important;
  display: none !important;
}


