.about-us {
    padding: 60px 20px;
    background-color: #f9f9f9;
  }
  
  .inner-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .about-section {
    margin-bottom: 40px;
  }
  
  .carousel-section {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .carousel {
    position: relative;
    width: 90%;
    max-width: 800px;
    overflow: hidden;
  }
  
  .carousel-track {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
  }
  
  .carousel-slide {
    flex: 0 0 30%;
    margin: 0 10px;
    opacity: 0.5;
    transform: scale(0.8);
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  }
  
  .carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
  }
  
  .carousel-slide.prev,
  .carousel-slide.next {
    z-index: 1;
  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: background 0.3s;
  }
  
  .carousel-btn:hover {
    background: #e0e0e0;
  }
  
  .carousel-btn.prev {
    left: 0px;
  }
  
  .carousel-btn.next {
    right: 0px;
  }
  

  .about-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #007bff;
  }
  
  .about-section p,
  .about-list li {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .about-list {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .about-cta {
    text-align: center;
    margin-top: 60px;
  }
  
  .about-cta h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  .btn-about-us {
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .btn-about-us:hover {
    background-color: #0056b3;
  }