.comfort-section {
  background: #e6d6bf;
  height: 80vh;
  padding: 100px 0;
  margin-top: 5%;
}

/* Label with lines */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.section-label span {
  width: 60px;
  height: 1px;
  background: #0f5c45;
}

.section-label p {
  font-size: 12px;
  letter-spacing: 4px;
  color: #0f5c45;
  font-weight: 600;
  margin: 0;
}

/* Main Title */
.comfort-title {
  font-family: serif;
  font-size: 80px;
  font-weight: 600;
  line-height: 1.1;
}

.comfort-title span {
  color: #0f5c45;
  font-style: italic;
  font-weight: 500;
}

/* Quote */
.comfort-quote {
  margin-top: 30px;
  font-size: 16px;
  color: #5a5a5a;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .comfort-section {
    height: 50vh !important;
  }

  .comfort-title {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .comfort-section {
    margin-top: 15%;
  }

  .comfort-title {
    font-size: 45px;
  }
}

@media (max-width: 576px) {
  .comfort-title {
    font-size: 34px;
  }

  .section-label span {
    width: 40px;
  }

  .comfort-quote {
    font-size: 14px;
    padding: 0 15px;
  }
}

/* Background */
.suite-section {
  background: #e6d6bf;
}

/* Image */
.suite-image-wrapper {
  border-radius: 30px;
  height: 80vh;
  overflow: hidden;
  border: 12px solid #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.suite-img {
  border-radius: 20px;
  height: 80vh;
}

/* Price Badge */
.price-badge {
  position: absolute;
  top: -30px;
  right: 20px;
  background: #0f5c45;
  color: #fff;
  font-family: serif;
  font-style: italic;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
}
 .price-left {
    left: 10px !important;
  }

.price-badge span {
  font-size: 11px;
  letter-spacing: 2px;
}

.price-badge h5 {
  margin: 0;
  font-weight: 600;
}

.price-badge small {
  font-size: 11px;
}

/* Labels */
.suite-label {
  letter-spacing: 4px;
  font-size: 12px;
  color: #0f5c45;
  font-weight: 600;
}

.features-label {
  font-size: 12px;
  letter-spacing: 3px;
  margin-top: 30px;
  color: #555;
}

/* Title */
.suite-title {
  font-family: serif;
  font-size: 48px;
  font-weight: 600;
}

.suite-title span {
  color: #0f5c45;
  font-style: italic;
}

/* Description */
.suite-desc {
  color: #555;
  margin-top: 20px;
  line-height: 1.7;
}

/* Features */
.features-list ul {
  list-style: none;
  padding: 0;
}

.features-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
  font-size: 14px;
}

.features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0f5c45;
}

/* Button */
.reserve-btn {
  background: #000;
  text-decoration: none;
  color: #fff;
  border: none;
  padding: 14px 35px;
  border-radius: 40px;
  letter-spacing: 2px;
  font-size: 12px;
  transition: 0.3s;
}

.reserve-btn:hover {
  background: #0f5c45;
}

/* Responsive */
@media (max-width: 992px) {
  .suite-title {
    font-size: 38px;
  }

  .suite-image-wrapper {
    height: 50vh;
  }

  .suite-img {
    height: 50vh;
  }

  .price-badge {
    right: 20px;
  }

  .price-left {
    left: 15px !important;
  }
}

@media (max-width: 768px) {
  .suite-title {
    font-size: 30px;
  }

  .price-badge {
    width: 90px;
    height: 90px;
    font-size: 12px;
  }

  .price-badge h5 {
    font-size: 16px;
  }

  .reserve-btn {
    width: 100%;
  }
}

/* Background outside */
body {
  background: #e6d6bf;
}

/* Main Rounded Box */
.included-wrapper {
  background: linear-gradient(135deg, #0f5c45, #0c4a39);
  border-radius: 80px;
  padding: 80px;
  color: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* Small top label */
.small-label {
  letter-spacing: 4px;
  font-size: 12px;
  color: #4fffb0;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Main heading */
.main-title {
  font-family: serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.1;
}

.main-title span {
  color: #38d39f;
  font-style: italic;
}

/* Description */
.description {
  margin-top: 25px;
  color: #d7f5ea;
  font-size: 16px;
  max-width: 450px;
  line-height: 1.7;
}

/* Feature titles */
.included-wrapper h6 {
  font-size: 12px;
  letter-spacing: 3px;
  color: #4fffb0;
  margin-bottom: 10px;
}

.included-wrapper p {
  font-size: 15px;
  color: #e9fff8;
  margin-bottom: 0;
}

/* Responsive Design */

@media (max-width: 1200px) {
  .main-title {
    font-size: 48px;
  }
}

@media (max-width: 992px) {
  .included-wrapper {
    padding: 60px 40px;
    border-radius: 50px;
  }

  .main-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .included-wrapper {
    padding: 40px 25px;
    border-radius: 35px;
  }

  .main-title {
    font-size: 32px;
  }

  .description {
    font-size: 14px;
  }
}