.donate-hero {
  padding: 230px 0;
  background-image: url(/images/donate/donate-bg.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.donate-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.25),
    transparent
  );
}

.donate-hero-content {
  padding: 0 clamp(20px, 6vw, 180px);
}

.donate-hero-title {
  width: 100%;
  color: #1b667f;
  font-weight: 500;
  letter-spacing: -1px;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #202020;
  font-family: "obviously", sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
}

.donate-section {
  position: relative;
  padding: clamp(80px, 12vw, 180px) 0;
  background: #f5f5f5;
}

.donate-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 180px);
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.donate-box {
  flex: 1 1 420px;
  background: white;
  border: 1px solid #eee;
  padding: 30px 18px;
}

.donate-box-header h3 {
  margin-bottom: 5px;
  font-size: 20px;
}

.donate-box-header p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.donate-type {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.donate-type-btn {
  flex: 1;
  padding: 12px;
  border: 2px solid #202020;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  color: #202020;
  transition: all 0.25s ease;
}

.donate-type-btn.active {
  background: #202020;
  color: white;
}

.donate-amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.donate-amounts button {
  padding: 15px;
  color: #202020;
  border: 2px solid #ddd;
  background: #fafafa;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.donate-amounts button:hover {
  border-color: #202020;
}

.donate-amount-btn.active {
  border-color: #202020;
  background: #202020;
  color: #fff;
  transform: scale(1.03);
}

.donate-custom {
  display: flex;
  align-items: center;
  border: 2px solid #ddd;
  padding: 12px;
  margin-bottom: 25px;
}

.donate-custom span {
  margin-right: 8px;
  font-weight: 600;
}

.donate-custom input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 16px;
}

.donate-div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.donate-info {
  flex: 1 1 395px;
  max-width: 520px;
}

.donate-info h2 {
  font-family: "anton";
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.donate-info p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.message-div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.donate-message {
  font-size: 1rem;
  color: #1b667f;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  font-weight: 600;
  margin-top: 20px;
}

.donate-message.show {
  opacity: 1;
  transform: translateY(0);
}

.donate-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  font-size: 13px;
  color: #666;
}

.donate-img {
  width: 18px;
  height: 18px;
}

@media (max-width: 900px) {
  .donate-section {
    padding-bottom: 5px;
  }

  .donate-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .donate-info {
    max-width: 100%;
  }

  .donate-box {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .donate-hero {
    padding: 140px 0 80px;
  }

  .donate-amounts {
    grid-template-columns: 1fr;
  }
}
