/* About us */

  
  /* About Section Styling */
  .about-section {
    background: linear-gradient(135deg, #0073e6, #00b3b3);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .about-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }
  
  .about-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .about-section .highlight {
    color: #ffdd57;
    font-weight: bold;
  }
  
  .learn-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ffdd57;
    color: #0073e6;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .learn-more-btn:hover {
    background-color: #ffc107;
    transform: scale(1.05);
  }
  
