 /* Additional CSS for the About page */
    :root {
      --primary: #0056b3;
      --secondary: #003366;
      --accent: #00a0e1;
      --light: #f8f9fa;
      --dark: #212529;
    }
    
    /* Hero Section */
    .about-hero {
      background: linear-gradient(rgba(0, 84, 180, 0.8), rgba(0, 51, 102, 0.8)), 
                  url('../assets/MAFINA/mafina-images-pack/img4.jpg') no-repeat center center;
      background-size: cover;
      color: white;
      padding: 8rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .about-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      animation: fadeInUp 1s ease-out;
    }
    
    .about-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto 2rem;
      animation: fadeInUp 1s ease-out 0.3s both;
    }
    
    .scroll-down {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      animation: bounce 2s infinite;
      cursor: pointer;
    }
    
    /* About Content Sections */
    .about-section {
      padding: 5rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
    }
    
    .section-title h2 {
      font-size: 2.5rem;
      color: var(--secondary);
      display: inline-block;
      position: relative;
    }
    
    .section-title h2:after {
      content: '';
      position: absolute;
      width: 60px;
      height: 4px;
      background: var(--accent);
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
    }
    
    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    
    .about-card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .about-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }
    
    .card-img {
      height: 200px;
      overflow: hidden;
    }
    
    .card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .about-card:hover .card-img img {
      transform: scale(1.1);
    }
    
    .card-content {
      padding: 1.5rem;
    }
    
    .card-content h3 {
      color: var(--primary);
      margin-bottom: 1rem;
    }
    
    /* Stats Section */
    .stats-section {
      background: var(--secondary);
      color: white;
      padding: 4rem 2rem;
      text-align: center;
    }
    
    .stats-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
    }
    
    .stat-item {
      padding: 1.5rem;
    }
    
    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--accent);
    }
    
    .stat-label {
      font-size: 1.1rem;
      opacity: 0.9;
    }
    
    /* Timeline Section */
    .timeline-section {
      background: var(--light);
      padding: 5rem 2rem;
    }
    
    .timeline {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 0;
    }
    
    .timeline:before {
      content: '';
      position: absolute;
      width: 6px;
      background: var(--accent);
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -3px;
    }
    
    .timeline-item {
      padding: 10px 40px;
      position: relative;
      width: 50%;
      box-sizing: border-box;
      margin-bottom: 2rem;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.5s ease;
    }
    
    .timeline-item.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    .timeline-item:nth-child(odd) {
      left: 0;
    }
    
    .timeline-item:nth-child(even) {
      left: 50%;
    }
    
    .timeline-content {
      padding: 20px;
      background: white;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      position: relative;
    }
    
    .timeline-content:after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      background: white;
      top: 30px;
      transform: rotate(45deg);
      box-shadow: 5px -5px 10px rgba(0,0,0,0.1);
    }
    
    .timeline-item:nth-child(odd) .timeline-content:after {
      right: -10px;
    }
    
    .timeline-item:nth-child(even) .timeline-content:after {
      left: -10px;
    }
    
    .timeline-date {
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    
    .timeline-dot {
      position: absolute;
      width: 20px;
      height: 20px;
      background: var(--accent);
      border-radius: 50%;
      top: 30px;
      left: 50%;
      margin-left: -10px;
      z-index: 1;
    }
    
    /* Mission Section */
    .mission-section {
      background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 51, 102, 0.9)), 
                  url('../assets/MAFINA/mafina-images-pack/img2.jpg') no-repeat center center;
      background-size: cover;
      color: white;
      padding: 5rem 2rem;
      text-align: center;
    }
    
    .mission-container {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .mission-statement {
      font-size: 1.5rem;
      line-height: 1.6;
      margin-bottom: 2rem;
      position: relative;
      padding: 2rem;
    }
    
    .mission-statement:before,
    .mission-statement:after {
      content: '"';
      font-size: 4rem;
      color: var(--accent);
      opacity: 0.5;
      position: absolute;
    }
    
    .mission-statement:before {
      top: 0;
      left: 0;
    }
    
    .mission-statement:after {
      bottom: -20px;
      right: 0;
    }
    
    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 999;
    }
    
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      background: var(--secondary);
      transform: translateY(-3px);
    }
    
      /* Add this CSS to your stylesheet */
    .stats-section {
        background-color: #002855;
        padding: 4rem 0;
        text-align: center;
    }

    .stats-container {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 0;
    }

    .stat-item {
        padding: 1.5rem;
        min-width: 200px;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        color: #0066cc;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
        color: white;
    }

    @media (max-width: 768px) {
        .stats-container {
            flex-direction: column;
            align-items: center;
        }
        
        .stat-item {
            margin-bottom: 2rem;
        }
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
      }
      40% {
        transform: translateY(-20px) translateX(-50%);
      }
      60% {
        transform: translateY(-10px) translateX(-50%);
      }
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .about-hero h1 {
        font-size: 2.5rem;
      }
      
      .about-hero p {
        font-size: 1rem;
      }
      
      .section-title h2 {
        font-size: 2rem;
      }
      
      .timeline:before {
        left: 31px;
      }
      
      .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
      }
      
      .timeline-item:nth-child(even) {
        left: 0;
      }
      
      .timeline-dot {
        left: 31px;
      }
      
      .timeline-item:nth-child(odd) .timeline-content:after,
      .timeline-item:nth-child(even) .timeline-content:after {
        left: -10px;
        right: auto;
      }
    }