
@media (max-width: 991.98px) {
  .footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }

  .footer-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }

  .footer-list li {
    list-style: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .footer-list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
    padding-left: 0;
  }

  .footer-list li {
    list-style: none;
    flex: 1;
    text-align: center;
    white-space: nowrap;
  }

  .footer-list li a {
    display: inline-block;
    white-space: nowrap;
  }
}



.sd-card {
  border-radius: 20px;
  border: none;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sd-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.sd-point-list {
  list-style: disc;
  padding-left: 20px;
}
.sd-point-list li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}
.section-title {
  font-weight: 700;
  color: #0d3b66;
  font-size: 48px;
  margin-bottom: 25px;
}
