.donation-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 15px;
  font-family: 'Poppins', sans-serif;
}

/* ===== Banner ===== */

.donation-banner {
    display: flex;
    justify-content: center; /* yatayda ortala */
}
.donation-banner img {
    display: block;  /* inline sorunlarını kaldırır */
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    margin-bottom: 5px; /* banner ile kart arası boşluk */
}

/* ===== Kart ===== */
.donation-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  margin-top: 0;
}

/* ===== Bilgi Alanı ===== */
.donation-info h1 {
  font-size: 30px;
  color: #230b68;
  margin-bottom: 15px;
}

.donation-info p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* ===== Bağış Başlığı ===== */
.quick-donation h2 {
  margin-top: 25px;
  margin-bottom: 20px;
  color: #230b68;
  text-align: center;
}

/* ===== Form Genel ===== */
.quick-donation form {
  display: flex;
  flex-direction: column;
  align-items: center; /* inputları ortala */
  gap: 20px;
  width: 100%;
}

/* ===== Form Grupları ===== */
.quick-donation form .form-group {
  width: 100%;
  max-width: 300px;  /* input genişliği sınır */
  margin: 0 auto;    /* ortalama */
  display: flex;
  flex-direction: column;
}

/* ===== Label ===== */
.quick-donation form label {
  font-size: 15px;
  margin-bottom: 8px;
  color: #230b68;
  font-weight: 600;
}

/* ===== Input & Select ===== */
.quick-donation form input,
.quick-donation form select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.quick-donation form input:focus,
.quick-donation form select:focus {
  border-color: #230b68;
  box-shadow: 0 0 5px rgba(35,11,104,0.3);
  outline: none;
}

/* ===== Bağış Butonu ===== */
.donate-button {
  padding: 14px;
  background: #230b68;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
  max-width: 300px;
}

.donate-button:hover {
  background: #1a084f;
}

/* ===== Bağış Sizin Adınıza mı? ===== */
.bagis-sizin-adiniza {
  margin-top: 25px;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.bagis-sizin-adiniza label {
  font-weight: 600;
  font-size: 16px;
}

.bagis-sizin-adiniza input[type="text"] {
  margin-top: 10px;
  padding: 12px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
  box-sizing: border-box;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .donation-card {
    max-width: 90%;
    padding: 25px;
  }

  .donation-banner img {
    max-width: 100%;
    border-radius: 12px;
  }

  .quick-donation form .form-group {
    max-width: 250px;
  }

  .donate-button {
    max-width: 250px;
    font-size: 15px;
    padding: 12px;
  }
}

@media (max-width: 576px) {
  .donation-container {
    padding: 25px 10px;
  }

  .donation-card {
    max-width: 100%;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  }

  .donation-info h1 {
    font-size: 22px;
  }

  .donation-info p,
  .quick-donation h2 {
    font-size: 14px;
  }

  .quick-donation form .form-group {
    max-width: 90%;
  }

  .quick-donation form input,
  .quick-donation form select {
    font-size: 14px;
    padding: 10px;
  }

  .donate-button {
    font-size: 14px;
    padding: 12px;
    max-width: 90%;
  }
}