/* About page enhancements (scoped) */
/* We intentionally avoid changing font-size to preserve existing typography */

/* Section general spacing tweaks (non-invasive) */
.about-us-area {
  scroll-margin-top: 80px;
}

/* Modern list styling */
.about-us-area .about-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0; /* keep spacing consistent with existing copy */
}

.about-us-area .about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.about-us-area .about-list li:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* Icon bullet */
.about-us-area .about-list .bullet {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary-gradient);
  box-shadow: 0 2px 8px var(--primary-shadow);
}

.about-us-area .about-list .text {
  line-height: 1.6; /* improve readability without changing font-size */
}

/* Image responsiveness and subtle card frame */
.about-us-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
}

/* Section headings highlight (keeps existing size) */
.section-heading h2 span {
  background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color-ultra-light));
  border-radius: 6px;
  padding: 0 6px;
}

/* Responsive refinements */
@media (max-width: 991.98px) {
  .about-us-area .about-list li {
    border-radius: 10px;
    padding: 12px;
  }
}

@media (max-width: 575.98px) {
  .about-us-area .about-list li {
    margin-bottom: 12px;
    padding: 10px 12px;
  }
  .about-us-area .about-list .bullet {
    flex-basis: 26px;
    width: 26px;
    height: 26px;
  }
  
  /* Image spacing on mobile */
  .about-us-img {
    margin-top: 30px;
  }
  
  /* Improve text flow on small screens */
  .about-us-area .about-list .text {
    line-height: 1.5;
  }
}

/* Extra small devices optimization */
@media (max-width: 480px) {
  .about-us-area .about-list li {
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
  }
  
  .about-us-area .about-list .bullet {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }
  
  .about-us-area .about-list .bullet i {
    font-size: 11px;
  }
}

/* Tablet landscape enhancements */
@media (min-width: 768px) and (max-width: 991.98px) {
  .about-us-img {
    margin-top: 40px;
  }
  
  .about-us-area .about-list li {
    padding: 14px 16px;
  }
}

