/* About Hero Section */
.about-hero {
    padding: 10px 0;
    background: cfe9fcce;
    color: #1e293b;
  }
  
  .about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .about-hero p {
    font-size: 1.2rem;
  }
  
  /* Our Story Section */
  .our-story {
    padding: 80px 0;
  }
  
  .our-story h2 {
    margin-bottom: 20px;
  }
  
  .our-story p {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  /* Our Mission Section */
  .our-mission {
    padding: 80px 0;
    background: #f9f9f9;
  }
  
  .our-mission h2 {
    margin-bottom: 20px;
  }
  
  .our-mission p {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  /* Our Team Section */
  .our-team {
    padding: 80px 0;
  }
  
  .team-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .team-card:hover {
    transform: translateY(-10px);
  }
  
  .team-card img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }
  
  /* Our Values Section */
  .our-values {
    padding: 80px 0;
    background: #f9f9f9;
  }
  
  .value-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .value-card:hover {
    transform: translateY(-10px);
  }
  
  .value-card i {
    font-size: 3rem;
    color: #2575fc;
    margin-bottom: 20px;
  }