/* 🔧 Page-specific styles for about */
/* 🎯 Page: About U-PAC */

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .about-container h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  
  .content-section {
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .content-section.light-section {
    background-color: #eaeaea;
  }
  
  .text-container p {
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
  }
  
  .list-container {
    text-align: left;
    margin-top: 1rem;
  }
  
  .spaced-list {
    list-style: disc;
    padding-left: 1.25rem;
  }
  
  .spaced-list li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* 🔘 Button Section */
  .hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .btn-donate {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.3s ease;
  }
  
  .support-donate {
    background-color: #ffc107;
  }
  .support-donate:hover {
    background-color: #e0a800;
  }
  
  .support-volunteer {
    background-color: #28a745;
  }
  .support-volunteer:hover {
    background-color: #218838;
  }
  