/* ===== INSIGHTS PAGE ===== */
.insights-section {
  padding: 40px 0 110px; /* reduced top padding */
  background: #EFECE3;
  text-align: center;
}

.insights-section h2 {
  font-size: 2.5rem;         /* Updated to match hero section */
  color: #1A2A4F;            /* Updated color */
  font-family: Arial, sans-serif; /* Ensure consistent font */
  margin-bottom: 12px;
  font-weight: 700;
}

.insights-intro {
  font-size: 1.18rem;
  max-width: 850px;
  margin: 0 auto 55px;
  color: #333;
  line-height: 1.7;
}

/* Insights Boxes */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 35px;
}

.insight-box {
  background: #e8a803;
  border-radius: 12px;
  padding: 32px 26px;
  border: 2px solid #1c1b1b;
  transition: 0.35s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  text-align: left;
}

.insight-box h3 {
  font-size: 1.45rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 12px;
}

.insight-box p {
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
}

/* Hover */
.insight-box:hover {
  transform: translateY(-10px);
  border-color: #4A70A9;
  box-shadow: 0 12px 25px rgba(0,0,0,0.16);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insights-section {
    padding: 30px 0 60px;
  }
}
