/* Highlights Section Layout */
.highlights-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.row {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.col-img,
.col-text {
  flex: 1;
}

.illustration-placeholder img {
  width: 100%;
  border-radius: 20px;
}

/* Text Styling */
.tag {
  color: #ff6633;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

h2 {
  font-size: 40px;
  color: #0d4e5c;
  margin: 15px 0 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.icon-box {
  font-size: 30px;
  background: #f0f9fa;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.icon-box i {
  color: #0d4e5c;
}

.text-content h3 {
  color: #0d4e5c;
  margin-bottom: 5px;
}

.text-content p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

/* =================================
   HIGHLIGHTS SECTION RESPONSIVE
================================= */

/* -------- Laptop -------- */
@media (max-width: 1100px) {
  .row {
    gap: 40px;
  }

  .col-text h2 {
    font-size: 34px;
  }
}

/* -------- Tablet -------- */
@media (max-width: 900px) {
  .row {
    flex-direction: column;
    text-align: center;
  }

  .col-img {
    order: -1; /* image upore ashbe */
  }

  .illustration-placeholder img {
    width: 100%;
    margin: 0 auto;
  }

  .feature-item {
    justify-content: center;
    text-align: left;
  }
}

/* -------- Mobile -------- */
@media (max-width: 600px) {
  .highlights-section {
    padding: 70px 0;
  }

  .col-text h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .feature-item {
    gap: 15px;
    margin-bottom: 25px;
  }

  .icon-box {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .text-content h3 {
    font-size: 17px;
  }

  .text-content p {
    font-size: 14px;
  }
}

/* -------- Small Mobile -------- */
@media (max-width: 400px) {
  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
