/* =========================================================
   ABOUT PAGE
========================================================= */

.about-platform-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid rgba(23, 59, 109, 0.16);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 5px 18px rgba(23, 59, 109, 0.07);
  transition: all 0.3s ease;
}

.about-platform-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 174, 85, 0.4);
  box-shadow: 0 18px 40px rgba(23, 59, 109, 0.13);
}

.about-platform-icon {
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-size: 1rem;
}

.about-platform-card h3 {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 800;
  color: #173b6d;
}

.about-platform-card p {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(38, 54, 74, 0.65);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {
  .about-platform-card {
    padding: 1.25rem;
  }
}