

/* ===== About Section Wrapper ===== */
#about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 75px 20px;
  margin: 0 auto;
}

@media (min-width: 1280px) {
  #about-section {
    flex-direction: row;
    justify-content: space-between;
    padding: 100px 0;
  }
}

/* ===== Left Section (Heading + Description) ===== */
#about-section-1 {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

@media (min-width: 1280px) {
  #about-section-1 {
    width: 50%;
    text-align: left;
    padding-right: 50px;
    margin-bottom: 0;
  }
}

#about-section-1 h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
}

#about-section-1 p {
  font-size: 18px;
  line-height: 26px;
  color: #000;
  margin-bottom: 24px;
}

#explore_unique_stays_btn_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 55px;
  border: 2px solid #000;
  border-radius: 100px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

#explore_unique_stays_btn_link:hover {
  border-color: var(--primary-color, #0066cc);
  background-color: var(--primary-color, #0066cc);
  color: #fff;
}

/* ===== Divider Line ===== */
#about-section-divider {
  display: none;
}

@media (min-width: 1024px) {
  #about-section-divider {
    display: block;
    width: 1px;
    height: 350px;
    border: none;
    background-color: #dcdcdc;
  }
}

/* ===== Right Section (Why Choose) ===== */
#about-section-2 {
  width: 100%;
}

@media (min-width: 1280px) {
  #about-section-2 {
    width: 50%;
    padding-left: 66px;
  }
}

#about-section-2 h2 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 32px;
  text-align: center;
}

@media (min-width: 1280px) {
  #about-section-2 h2 {
    text-align: left;
  }
}

/* ===== Feature Points ===== */
.about-que {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-que-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: calc(50% - 0.5rem);
  padding: 10px;
}

.about-que-container img {
  width: 31px;
  height: 31px;
}

.about-que-container span {
  font-size: 16px;
  line-height: 22px;
  text-transform: capitalize;
}

#about-que-row2 {
  width: 100%;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  padding: 16px 0;
  margin: 12px 0;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 767px) {
  #about-section-1 h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  #about-section-2 h2 {
    font-size: 1.5rem;
  }

  .about-que-container {
    width: 100%;
  }
}
