/* ABOUT HERO */
.about-hero {
  background: linear-gradient(135deg, #0b3c5d, #0f5b8f);
  padding: 90px 20px;
  text-align: center;
  color: #ffffff;
}

.about-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 20px;
  opacity: 0.9;
}

/* CONTAINER */
.about-container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* INTRO */
.about-intro h2 {
  font-size: 30px;
  color: #0b3c5d;
  text-align: center;
  margin-bottom: 16px;
}

.about-intro p {
  font-size: 20px;
  color: #475569;
  line-height: 1.8;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

/* HIGHLIGHTS */
.about-highlights {
  background: #f5f8fc;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.highlight-card {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
}

.highlight-icon {
  font-size: 40px;
  margin-bottom: 14px;
}

.highlight-card h3 {
  font-size: 18px;
  color: #0b3c5d;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.6;
}

/* TRUST SECTION */
.about-trust {
  background: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.trust-text h2 {
  font-size: 28px;
  color: #0b3c5d;
  margin-bottom: 14px;
}

.trust-text p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 18px;
}

.trust-text ul {
  list-style: none;
  padding: 0;
}

.trust-text li {
  font-size: 14.5px;
  color: #334155;
  margin-bottom: 8px;
}

/* STATS */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: #f8fafc;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 26px;
  color: #0b3c5d;
}

.stat-box span {
  font-size: 13.5px;
  color: #64748b;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .about-hero h1 {
    font-size: 28px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }
}