/* About page styling */
.hero {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #343a40;
  }
  
  .hero p {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .about-content {
    padding: 40px 0 60px;
  }
  
  .profile-image {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .profile-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
  
  .about-header {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
  }
  
  .about-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: #007bff;
  }
  
  .about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 25px;
  }
  
  .highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 4px 4px 0;
  }
  
  .highlight-box p {
    margin-bottom: 0;
    font-style: italic;
    color: #495057;
  }
  
  .qualification-badge {
    display: inline-block;
    background-color: #e9ecef;
    color: #495057;
    padding: 6px 12px;
    border-radius: 50px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
  }
  
  .qualification-badge.primary {
    background-color: #cfe2ff;
    color: #0d6efd;
  }
  
  .qualification-badge.success {
    background-color: #d1e7dd;
    color: #198754;
  }