/* --- Charity Page Specific Styles --- */

.charity-hero {
    background: #eaf4ed;
    padding: 100px 40px;
    text-align: center;
  }
  
  .charity-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    color: #222;
  }
  
  .charity-hero p {
    font-size: 1.15rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .impact-section {
    background: #ffffff;
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid #eee;
  }
  
  .impact-section .section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #222;
  }
  
  .impact-section .section-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 720px;
    margin: 0 auto 30px auto;
  }
  
  .past-charities {
    background: #f9f9fb;
    padding: 60px 40px;
    text-align: center;
  }
  
  .past-charities .section-title {
    font-size: 2rem;
    color: #222;
    margin-bottom: 30px;
  }
  
  .charity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .charity-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    text-align: left;
    transition: transform 0.3s ease;
  }
  
  .charity-card:hover {
    transform: translateY(-4px);
  }
  
  .charity-card h3 {
    color: #007bff;
    margin-bottom: 12px;
    font-size: 1.2rem;
  }
  
  .charity-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.5;
  }
  
  .charity-link {
    font-weight: 600;
    color: #007bff;
    text-decoration: none;
  }
  
  .charity-link:hover {
    text-decoration: underline;
  }
  
  .apply-section {
    background: #ffffff;
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid #eee;
  }
  
  .apply-section .section-title {
    font-size: 2rem;
    color: #222;
    margin-bottom: 12px;
  }
  
  .apply-section .section-subtitle {
    font-size: 1.05rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
  }
  
  .cta-btn {
    background: #007bff;
    color: white;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .cta-btn:hover {
    background: #005dc1;
  }
  