/* Banner Styles */
.about-banner {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 80px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }
  
  .banner-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .banner-content p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
  }
  
  /* About Us Section */
  .about-us {
    padding: 60px 20px;
    background: #f8f9ff;
    color: #2d3748;
  }
  
  .about-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .about-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
  }
  
  .about-row.reverse {
    flex-direction: row-reverse;
  }
  
  .about-text {
    flex: 1;
    padding: 20px;
  }
  
  .about-text h2 {
    font-size: 32px;
    color: #4a5568;
    margin-bottom: 15px;
  }
  
  .about-text p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
  }
  
  .about-text ul {
    list-style: none;
    padding-left: 0;
  }
  
  .about-text ul li {
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
  }
  
  .about-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
  }
  
  .about-image {
    flex: 1;
    padding: 20px;
    text-align: center;
  }
  
  .about-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-row,
    .about-row.reverse {
      flex-direction: column;
    }
  
    .banner-content h1 {
      font-size: 36px;
    }
  
    .banner-content p {
      font-size: 16px;
    }
  }
  