/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero-section {
    background: url('../images/hero-donate.jpg') no-repeat center center/cover;
    color: white;
}

/* Donation Options */
.donation-options .card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-options .card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

/* Enquiries Section */
.enquiries .btn {
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
}

.enquiries h5 {
    margin-top: 20px;
}

/* FAQ Section */
.accordion-button {
    font-weight: bold;
}

.accordion-button:focus {
    border-color: #6c4cff;
    box-shadow: 0 0 0 0.25rem rgba(108, 76, 255, 0.25);
}

.accordion-item {
    border: none;
}


.footer {
    background: #000;
    color: white;
  }
  
  .footer h5 {
    color: #ff7f00;
    font-size: 1.5rem;
  }
  
  .footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer a:hover {
    color: #ff7f00;
  }
  
  .footer .border-white {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  