.about-section {
  padding: 100px 0;
  background-color: var(--light-color);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.carousel {
  position: relative;
  width: 80%;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
  border: 2px solid rgba(51, 214, 197, 0.35);
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.carousel-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-images img {
  width: 100%;
  flex-shrink: 0;
}

.carousel-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-buttons button {
  background-color: rgba(23, 26, 32, 0.78);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.carousel-buttons button:hover {
  background-color: var(--primary-color);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.about-text p {
  margin-bottom: 20px;
  color: var(--gray);
}

.features {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.feature {
  text-align: center;
}

.feature i {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature h4 {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    gap: 20px;
  }
}
