.about-carousel-section {
  background: #ffeaf0;
  position: relative;
}

.about-title {
  font-size: 2rem;
  font-weight: 800;
  color: #8e324a;
  margin-bottom: 20px;
}

.about-content-container {
  padding: 30px 15px 0 15px;
}

.about-video-wrapper iframe {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Swiper pagination */
.about-pagination {
  position: static;
  text-align: center;
  margin-bottom: 40px;
}

/* Swiper arrows */
.about-prev,
.about-next {
  color: #8e324a;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}

.about-prev {
  left: 10px;
}

.about-next {
  right: 10px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 1.5rem;
  }

  .about-video-wrapper iframe {
    height: 220px;
  }

  .about-prev,
  .about-next {
    display: none;
  }
}
.visit-website-btn {
  display: inline-block;
  background-color: #8e324a;
  color: #fff;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.visit-website-btn:hover {
  background-color: #b14260;
  color: #fff;
}
