.fp-foundation-pillars-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px 80px;
  text-align: center;
}

.fp-foundation-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #092c5c;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.fp-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
}

.fp-hex-card {
  width: 180px;
  height: 220px;
  background: #f5f9ff;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.fp-hex-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(255, 204, 0, 0.6);
}

.fp-hex-image {
  flex: 1;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.fp-hex-card:hover .fp-hex-image {
  transform: scale(1.05);
}

.fp-hex-info {
  padding: 15px 10px 20px;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.fp-hex-info h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #092c5c;
}

.fp-hex-info p {
  margin: 0;
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}



