
    .about-section {
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  padding: 0 20px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text .tagline {
  color: #fc9435;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-text .title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text .description {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
  max-width: 550px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.feature .icon {
  font-size: 28px;
  color: #fc9435;
  margin-top: 4px;
}

.feature h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

.feature p {
  font-size: 15px;
  color: #555;
}

.book-btn {
  display: inline-block;
  margin-top: 25px;
  background-color: #fc9435;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #3c1e9e;
}

.about-images {
  position: relative;
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-images .main-image {
  width: 110%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-images .thumb-image {
  position: absolute;
  top: 250px;
  left: -80px;
  width: 200px;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 5px solid #fff;
}

/* Responsive Design */
@media (max-width: 991px) {
  .about-container {
    flex-direction: column;
    align-items: flex-star25
  }

  .about-images {
    margin-top: 40px;
    justify-content: flex-start;
  }

  .about-images .thumb-image {
    top: 340px;
    left: 80px;
    width: 160px;
  }
}
