
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.donation {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
 
}

.donation__subtitle {
  color: #f2542d;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size:2.3rem;
}

.donation__title {
  font-size: 36px;
  margin: 10px 0 40px;
  font-weight: bold;
}

.donation__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.donation__info {
  flex: 1 1 300px;
  text-align: left;
}

.donation__info p {
  color: #555;
  line-height: 1.6;
}

.donation__bank {
  margin-top: 30px;
}

.donation__highlight {
  color: #f2542d;
  font-size: 20px;
  margin-bottom: 10px;
}

.donation__options {
  flex: 1 1 400px;
}

.donation__impact {
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.donation__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}

.donation__card {
  background-color: #fdfdfd;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.donation__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.donation__card:active {
  transform: scale(0.97);
}

.donation__icon svg {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}


.donation__img {
  width: 60px;
  
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(34%) sepia(95%) saturate(550%) hue-rotate(340deg) brightness(96%) contrast(92%);
  margin-bottom: 10px;
}

h4{
    font-size: 1.5rem;
}





@media (max-width: 768px) {
  .donation {
    padding: 50px 15px;
    margin-top:2rem;
  }

  .donation__title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .donation__content {
    flex-direction: column;
    gap: 40px;
  }

  .donation__info,
  .donation__options {
    flex: 1 1 100%;
    text-align: left;
  }

  .donation__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .donation__card {
    padding: 15px;
  }

  .donation__img {
    width: 50px;
  }

  h4 {
    font-size: 1.2rem;
  }
}

.donation__subtitle {

  font-size:2.3rem;
}

