/* ================= GRID & CONTAINERS ================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ================= HERO ================= */
.give-hero {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a2a66 0%, #1a3b99 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.give-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}
.give-hero p {
  font-size: 1.2rem;
  color: #FFD700;
  text-shadow: 0 0 6px rgba(255,215,0,0.5);
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
}

/* ================= GIVE FORM ================= */
.give-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.give-form h2 {
  color: #0a2a66;
  margin-bottom: 24px;
}

.give-form input,
.give-form select,
.give-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 2px solid #0a2a66;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.give-form input:focus,
.give-form select:focus,
.give-form textarea:focus {
  border-color: #FFD700;
  box-shadow: 0 0 6px rgba(255,215,0,0.4);
}

.give-form button {
  cursor: pointer;
}

/* ================= QR SECTION ================= */
.qr-section {
  display: none;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.qr-section h2 {
  color: #0a2a66;
  margin-bottom: 24px;
}

.qr h3 {
  margin-bottom: 12px;
  color: #D32F2F;
}

.qr img {
  width: 200px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.qr img:hover {
  transform: scale(1.05);
}

/* ================= FORM STATUS ================= */
.form-status {
  font-weight: 500;
  margin-top: 8px;
}
