/* About Us Section */
.about-section {
  background-color: #f6ffd8;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.about-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.about-content {
  flex: 1;
  padding-right: 30px;
}

.about-title {
  font-size: 2.8rem;
  color: #2E8B57;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-family: 'Ralsteda Medium', sans-serif;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #C5FF00;
}

.about-subtitle {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 25px;
  font-weight: 500;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.about-carousel {
  flex: 1;
  position: relative;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  color: #2E8B57;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.9);
}

.carousel-arrow-left {
  left: 15px;
}

.carousel-arrow-right {
  right: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .about-content {
    padding-right: 0;
    text-align: center;
  }
  
  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .carousel-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 5%;
  }
  
  .about-title {
    font-size: 2.2rem;
  }
  
  .about-subtitle {
    font-size: 1.2rem;
  }
  
  .carousel-container {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .carousel-container {
    height: 250px;
  }
  
  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
}