/* about.css */
body {
    font-family: 'Tajawal', sans-serif;
  }
  
  .page-banner {
    height: 300px;
    background: linear-gradient(to right, #2B2D42, #1E1F33);
    color: #fff;
  }
  
  .section-title {
    color: #2B2D42;
    font-weight: bold;
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    color: #2B2D42;
    font-weight: bold;
    font-size: 1.3rem;
  }
  
  .value-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .value-box:hover {
    transform: translateY(-5px);
  }
  
  .value-box i {
    font-size: 2rem;
    color: #E0130A;
    margin-bottom: 10px;
  }
  