.info-section {
  max-width: 1080px;
  margin: 60px auto;
  padding: 46px 20px;
  background: linear-gradient(128deg, #f6f9fc 89%, #e3ecf7 100%);
  border-radius: 28px;
  box-shadow: 0 14px 38px rgba(9, 44, 92, 0.11);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #092c5c;
  text-align: center;
  position: relative;
}

.info-header {
  margin-bottom: 20px;
}

.info-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin: 0;
  color: #092c5c;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.info-underline {
  width: 94px;
  height: 7px;
  background: linear-gradient(90deg, #ffcc00 65%, #ffd966 100%);
  margin: 12px auto 0;
  border-radius: 8px;
  box-shadow: 0 2px 16px #ffcc0093;
  animation: infoUnderlineGrow 0.85s cubic-bezier(.39,.58,.57,.99);
}

@keyframes infoUnderlineGrow {
  from { width: 0; opacity: 0.5; }
  to { width: 94px; opacity: 1; }
}

.info-intro {
  font-size: 1.19rem;
  max-width: 720px;
  margin: 22px auto 38px;
  color: #165fa2;
  font-weight: 600;
  letter-spacing: .01em;
}

/* Cards Layout */
.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin: 28px auto 36px;
}

.info-card {
  background: linear-gradient(120deg,#fffbea 60%, #f8f1df 100%);
  border-radius: 18px;
  padding: 32px 18px 22px 18px;
  flex: 1 1 235px;
  max-width: 248px;
  text-align: center;
  box-shadow: 0 6px 22px #ffd96621;
  transition: transform 0.37s cubic-bezier(.31,.59,.51,1.08), box-shadow 0.36s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.info-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 52px #ffcc0055, 0 4px 18px #0c366d2b;
}

/* Icon Box for Impact */
.info-icon-box {
  background: linear-gradient(135deg, #ffcc00 65%, #ffd966 100%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 17px auto;
  box-shadow: 0 0 18px #ffcc0054;
  animation: infoIconPop 0.7s cubic-bezier(.41,.6,.62,.99);
}

@keyframes infoIconPop {
  from { transform: scale(0.7); opacity: 0.1; }
  to { transform: scale(1); opacity: 1; }
}

.info-icon {
  font-size: 2rem;
  color: #092c5c;
  transition: color 0.28s;
}

.info-card:hover .info-icon {
  color: #d1002c;
}

.info-card h3 {
  font-size: 1.19rem;
  font-weight: 900;
  margin: 11px 0 12px;
  color: #092c5c;
  letter-spacing: .02em;
  border-bottom: 2px solid #ffd966;
  display: inline-block;
  background: none;
}

.info-card p {
  font-size: 0.99rem;
  color: #184576;
  line-height: 1.6;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .info-section { padding: 32px 10px; }
  .info-title { font-size: 2.05rem; }
  .info-cards { gap: 18px; }
}

@media (max-width: 700px) {
  .info-section { padding: 19px 4vw; }
  .info-title { font-size: 1.34rem; }
  .info-intro { font-size: 1rem;}
  .info-cards { flex-direction: column; gap: 22px; }
  .info-card { max-width: 100vw; padding: 18px 11px; }
}
