    :root {
      --gold: #D4AF37;
      --charcoal: #333333;
      --light-gold: #F8F3E6;
      --white: #FFFFFF;
      --light-gray: #F5F5F5;
      --dark-gray: #777777;
      --red: #E74C3C;
    }
    
    body {
      font-family: 'Montserrat', sans-serif;
      line-height: 1.6;
      color: var(--charcoal);
      background-color: var(--light-gray);
      margin: 0;
      padding: 0;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Header Section */
    .header-section {
      background-color: var(--charcoal);
      color: var(--white);
      padding: 40px 0;
      text-align: center;
    }
    
    .logo {
      width: 120px;
      margin-bottom: 15px;
    }
    
    .header-title {
      font-size: 2.5rem;
      margin: 0;
      font-weight: 700;
    }
    
    .header-subtitle {
      font-size: 1.2rem;
      margin-top: 10px;
      opacity: 0.9;
    }
    
    /* Form Container */
    .form-container {
      background: var(--white);
      border-radius: 8px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.05);
      padding: 40px;
      margin: 40px auto;
    }
    
    .section-title {
      color: var(--gold);
      font-size: 1.8rem;
      margin-bottom: 30px;
      padding-bottom: 15px;
      border-bottom: 2px solid var(--gold);
    }
    
    /* Payment Methods Section */
    .payment-methods {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin: 30px 0;
    }
    
    .payment-card {
      background: var(--white);
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      text-align: center;
      border: 1px solid #eee;
    }
    
    .payment-card h3 {
      color: var(--gold);
      margin-top: 0;
      font-size: 1.3rem;
    }
    
    .qr-code {
      width: 180px;
      height: 180px;
      margin: 15px auto;
      background: var(--light-gray);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #ddd;
    }
    
    .qr-code img {
      max-width: 100%;
      max-height: 100%;
    }
    
    .account-details {
      text-align: left;
      margin-top: 15px;
      font-size: 0.95rem;
    }
    
    .account-details strong {
      display: block;
      margin-bottom: 5px;
      color: var(--charcoal);
    }
    
    .copy-btn {
      background: var(--gold);
      color: white;
      border: none;
      padding: 5px 10px;
      border-radius: 4px;
      cursor: pointer;
      margin-top: 10px;
      font-size: 0.8rem;
      transition: all 0.3s ease;
    }
    
    .copy-btn:hover {
      background: #C2A035;
    }
    
    /* Form Elements */
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    
    .form-group {
      margin-bottom: 25px;
    }
    
    label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
    }
    
    label.required:after {
      content: " *";
      color: var(--red);
    }
    
    input, select, textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
    }
    
    input:focus, select:focus, textarea:focus {
      border-color: var(--gold);
      outline: none;
      box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
    }
    
    .radio-group, .checkbox-group {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      flex-direction: column;
    }
    
    .radio-option, .checkbox-option {
      display: flex;
      align-items: center;
    }
    
    .radio-option input, .checkbox-option input {
      width: auto;
      margin-right: 8px;
    }
    
    /* Packages Section */
    .packages-section {
      margin: 40px 0;
      text-align: center;
    }
    
    .packages-title {
      color: var(--gold);
      font-size: 2rem;
      margin-bottom: 30px;
    }
    
    .packages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }
    
    .package-card {
      background: var(--white);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    
    .package-card:hover {
      transform: translateY(-5px);
    }
    
    .package-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      cursor: pointer;
    }
    
    .package-details {
      padding: 20px;
    }
    
    .package-name {
      color: var(--gold);
      font-size: 1.5rem;
      margin: 0 0 10px;
    }
    
    /* Payment Info */
    .payment-info {
      background: var(--light-gold);
      padding: 25px;
      border-radius: 8px;
      margin: 30px 0;
    }
    
    .payment-info h3 {
      color: var(--gold);
      margin-top: 0;
    }
    
    /* File Upload */
    .file-upload {
      border: 2px dashed #ddd;
      padding: 30px;
      text-align: center;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .file-upload:hover {
      border-color: var(--gold);
      background-color: rgba(212, 175, 55, 0.05);
    }
    
    .file-requirements {
      font-size: 0.9rem;
      color: var(--dark-gray);
      margin-top: 10px;
    }
    
    /* Buttons */
    .btn-container {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }
    
    .btn-submit {
      background-color: var(--gold);
      color: var(--white);
      border: none;
      padding: 15px 40px;
      font-size: 14px;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 600;
    }
    
    .btn-submit:hover {
      background-color: #C2A035;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* Messages */
    .error-message {
      background-color: #ffeeee;
      border-left: 4px solid var(--red);
      padding: 20px;
      margin-bottom: 30px;
    }
    
    .success-message {
      background-color: #eeffee;
      border-left: 4px solid #4CAF50;
      padding: 40px;
      text-align: center;
      margin: 40px auto;
    }
    
    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      overflow: auto;
    }
    
    .modal-content {
      margin: auto;
      display: block;
      width: 80%;
      max-width: 800px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    
    #modalImage {
      width: 100%;
      height: auto;
      max-height: 80vh;
      object-fit: contain;
      display: none;
    }
    
    .close-modal {
      position: absolute;
      top: 20px;
      right: 30px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
      z-index: 1001;
    }
    
    .close-modal:hover {
      color: #D4AF37;
    }
    
    .loading {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 1.5rem;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .form-grid, .payment-methods {
        grid-template-columns: 1fr;
      }
      
      .header-title {
        font-size: 2rem;
      }
      
      .packages-grid {
        grid-template-columns: 1fr;
      }
      
      .qr-code {
        width: 150px;
        height: 150px;
      }
      
      .modal-content {
        width: 95%;
      }
    }
    
     .benefits {
    display: none;
  }
  
 
  .form-container.active {
    display: block;
  }

  /* Payment Advisory List (from your inline style) */
  .payment-info ul {
    list-style-type: none;
    font-weight: 500;
  }

  /* Countdown paragraph (from your inline style) */
  .payment-note {
    text-align: center;
    margin: 25px 0;
    font-weight: 500;
  }

  /* Copy buttons (from your inline styles) */
  .copy-btn {
    background: none;
    border: none;
    color: var(--red);
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-left: 5px;
  }

  /* Proceed link (from your inline style) */
  #proceedLink {
    color: #551a8b;
    text-decoration: underline;
    font-size: 18px;
    justify-content: center;
    display: flex;
  }
/* In donate.css */
/* For payment term other text input */
#other-payment-text[data-show="true"] {
  display: block;
}
#other-payment-text[data-show="false"] {
  display: none;
}

/* For bank account other text input */
#other-bank-text[data-show="true"] {
  display: block;
  margin-top: 10px;
}
#other-bank-text[data-show="false"] {
  display: none;
}

/* For file input */
#proof {
  display: none;
}
/* Dynamic display controls */
#other-payment-text.show {
  display: block;
}
#other-payment-text.hide {
  display: none;
}

#other-bank-text.show {
  display: block;
  margin-top: 10px;
}
#other-bank-text.hide {
  display: none;
}

/* File input styling */
#proof {
  display: none;
}

/* Radio button conditional styling */
input[type="radio"]:checked ~ #other-payment-text {
  display: block;
}
input[type="radio"]:not(:checked) ~ #other-payment-text {
  display: none;
}

/* Select conditional styling */
#bank_account[value="Other"] + #other-bank-text {
  display: block;
  margin-top: 10px;
}
#bank_account:not([value="Other"]) + #other-bank-text {
  display: none;
}

/* Add to donate.css */
.other-bank-text {
  margin-top: 10px;
}
.other-bank-text.show {
  display: block;
}
.other-bank-text.hide {
  display: none;
}

/* Hide file input visually but keep it accessible */
#proof {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Style for the visible upload area */
#uploadArea {
  border: 2px dashed #ccc;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  margin: 10px 0;
}

#uploadArea:hover {
  border-color: #D4AF37;
}