#section-2 {
  display: block;
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}

.sec2-con {
  display: flex;
  height: 100%;
}

.sec2-text-con {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background: var(--secondary-col);
}

.sec2-text-con p {
  color: var(--tertiary-col);
  width: 100%;
  padding: 0 35px;
  text-align: center;
  font-size: larger;
}
.sec2-text-con span {
  color: var(--primary-col);
  font-family: var(--font2);
  width: 100%;
  padding: 0 35px;
  text-align: center;
  font-size: xx-large;
}
.sec2-text-con .sec2-img-con {
  flex: 0 0 25%;
}

.sec2-img-con img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec2-highlights-con {
  flex: 0 0 50%;
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
}

.highlight {
  display: flex;
  padding: 10px;
  flex-direction: column;
  width: 33%;
  align-items: center;
}

.highlight img {
  width: 50%;
}

.highlight span {
  text-align: left;
  width: 40%;
  line-height: 10px;
  font-family: var(--font3);
  font-size: 0.6rem;
  line-height: 1.1;
}
.highlight span:nth-of-type(1) {
  margin-bottom: 5px;
}
.highlight span:nth-of-type(2) {
  margin-top: 5px;
}
.sec2-divider {
  height: 1px;
  background: var(--secondary-col);
  width: 42%;
}
/* ===== TABLET & DESKTOP BREAKPOINT (1200px) ===== */
@media (max-width: 1200px) {
  #section-2 {
    height: 40vh;
    height: 40dvh;
  }
  .highlight {
    padding: 0px;
  }
}

/* ===== TABLET BREAKPOINT (900px) ===== */
@media (max-width: 900px) {
  #section-2 {
    min-height: 35vh;
    min-height: 35dvh;
  }
}

/* ===== MOBILE BREAKPOINT (520px) ===== */
@media (max-width: 520px) {
  #section-2 {
    height: auto;
    min-height: auto;
    overflow-y: auto;
  }
  .sec2-con {
    flex-direction: column;
  }

  .highlight span {
    font-size: xx-small;
    width: 45%;
  }

  .sec2-divider {
    display: none;
  }
}

/* ===== SMALL MOBILE BREAKPOINT (375px) ===== */
@media (max-width: 375px) {
  #section-2 {
    height: auto;
    min-height: auto;
    padding: 8px;
  }

  .sec2-text-con {
    padding: 12px;
  }

  .sec2-h1 {
    padding: 3px;
    gap: 2px;
  }

  .sec2-h1 h1 {
    font-size: 1.2rem;
    font-weight: 600;
  }

  .sec2-p {
    padding: 3px;
  }

  .sec2-p p {
    font-size: 0.8rem;
  }

  .sec2-carousel-container {
    grid-template-columns: 1fr;
    padding: 8px;
    gap: 15px;
  }

  .sec2-carousel-wrapper {
    height: 250px;
  }

  .sec2-content-panel {
    padding: 12px;
  }

  .sec2-content-panel h1 {
    font-size: 1.2rem;
    margin: 0 0 8px 0;
  }

  .sec2-content-panel h3 {
    font-size: 1rem;
    margin: 0 0 8px 0;
  }

  .sec2-content-panel p {
    font-size: 0.75rem;
    margin: 0 0 12px 0;
  }

  .sec2-slider-controls {
    width: 100%;
    margin-top: 8px;
    gap: 6px;
  }

  .sec2-arrow-btn {
    padding: 5px;
  }

  .sec2-arrow-btn img {
    width: 30px;
    height: 30px;
  }

  .sec2-divider {
    height: 35px;
  }

  .sec2-count {
    font-size: 9px;
    min-width: 28px;
  }
}
