<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Start: New CSS */

/* Donation Section */
.donation-section-wrapper {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .donation-section-about {
    display: flex;
    /* align-items: center; */
  }
  
  
  .donation-section-left h1 {
    font-size: 40px;
    margin: 30px 0 10px;
    margin-top: 0;
    line-height: 120%;
  }
  
  
  .donation-tabs {
    gap: 20px;
  }
  
  .donation-options {
    display: flex;
    /* justify-content: center; */
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .donation-type {
    background-color: #d3d3d3;
    color: #000 !important;
    padding: 9px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
  }
  
  .donation-type.active {
    background-color: #ebca58 !important;
    color: white !important;
  }
  
  .donation-type:hover {
    background-color: #83c5be;
  }
  
  .donation-amounts {
    display: flex;
    /* justify-content: center; */
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .donation-amount {
    background-color: #d3d3d3;
    color: #000;
    font-weight: 500;
    padding: 7px 16px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .donation-amount:focus {
    outline: none;
  }
  
  .donation-amount.active {
    background-color: #ebca58;
    color: white;
  }
  
  .donation-amount:hover {
    background-color: #83c5be;
  }
  
  .offline-tab-content {
    margin-top: 25px;
  }
  
  .offline-tab-content strong,
  .offline-tab-content b {
    color: #ebca58;
  }
  
  .custom-amount {
    margin: 20px 0;
  }
  
  .custom-amount input {
    width: 250px;
    padding: 10px;
    border: 2px solid #ebca58;
    border-radius: 5px;
  }
  
  /* Proceed Button */
  .proceed-button {
    background-color: #ebca58;
    color: black;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    letter-spacing: 2px;
  }
  
  .proceed-button:hover {
    background-color: #83c5be;
    color: white;
  }
  
  /* FAQ Section */
  .faq-section {
    background-color: #f0f0f0;
    padding: 50px 20px;
  }
  
  .faq-section h3 {
    font-size: 2rem;
    color: #000;
  }
  
  .faq-section p strong,
  .faq-section p b {
    color: #ebca58;
  }
  
  .faq {
    margin-bottom: 20px;
  }
  
  .faq h3 {
    font-size: 1.5rem;
    color: #ebca58;
  }
  
  .faq p {
    font-size: 1rem;
    color: #333;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
  
    .donation-options,
    .donation-amounts {
      gap: 10px;
    }
  
    .custom-amount input {
      width: 100%;
    }
  
    .donation-section-about {
      flex-direction: column;
    }
  
    .donation-section-left {
      width: 100%;
      text-align: center;
    }
  
    .donation-section {
      width: 100%;
      justify-content: center;
    }
  
    .donation-tabs {
      gap: 9px;
    }
  }
  
  @media (max-width: 576px) {
    .donation-section-left h1 {
      font-size: 36px;
    }
  }
  
  @media (max-width: 412px) {
    .donation-type {
      color: #000 !important;
      padding: 9px 25px;
    }
  }
  
  @media (max-width: 320px) {
    .donation-type {
      padding: 9px 16px;
    }
  }
  
  @media (max-width: 320px) {
    .donation-type {
      padding: 9px 16px;
    }
  }
  
  @media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
      max-width: 1320px;
    }
  }
  /* End: New CSS */</pre></body></html>