/* General Styles */
h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  /* Section 1: Bank Details and Image */
  .donate-section {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
    background: #fff;
    border-bottom: 1px solid #ddd;
  }
  
  .bank-details,
  .donate-image {
    flex: 1;
    min-width: 300px;
  }
  
  .bank-details {
    padding: 20px;
    background: #f4f4f4;
    border-radius: 8px;
  }
  
  .bank-details h2 {
    margin-bottom: 10px;
  }
  
  .donate-image img {
    width: 100%;
    border-radius: 8px;
  }
  
  /* Section 2: Our Supporters */
  .supporters-section {
    padding: 20px;
    text-align: center;
    background: #eef9ff;
  }
  
  .supporters-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .supporter {
    padding: 15px 20px;
    background: #86C5DA;
    color: white;
    border-radius: 8px;
    font-weight: bold;
    min-width: 120px;
    text-align: center;
  }
  
  /* Section 3: Join Us as Volunteer */
 /* Section 3: Join Us as Volunteer */
.volunteer-section {
    padding: 105px 20px;
    color: #fff;
    text-align: center;
    position: relative;
    margin-bottom: 5px;
    margin-top: 45px;
  }
  
  .volunteer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Add a dark overlay */
    z-index: 1;
  }
  
  .volunteer-container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  .volunteer-container h2 {
    font-size: 28px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .volunteer-container p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .volunteer-button {
    padding: 12px 30px;
    background: #A1D490;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .volunteer-button:hover {
    background: #89b579;
    color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .volunteer-container {
      padding: 20px;
    }
  
    .volunteer-button {
      font-size: 16px;
    }
  }
  
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .donate-section {
      flex-direction: column;
      align-items: center;
    }
  
    .bank-details,
    .donate-image {
      text-align: center;
    }
  
    .donate-image img {
      max-width: 80%;
    }
  
    .supporters-list {
      gap: 10px;
    }
  }
  