 body {
      background: #f4f7fc;
      font-family: "Segoe UI", sans-serif;
    }
    .contact-card {
      border: none;
      border-radius: 18px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .contact-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
    }
    .card-header {
      background: linear-gradient(135deg, orange, #54668e, #046bd2, #060284);
      color: white;
      font-weight: 600;
      text-align: center;
      font-size: 1.05rem;
      padding: 18px;
      min-height: 70px; /* Ensures equal height headers */
      display: flex;
      align-items: center;
      justify-content: center;
    }
   .card-body {
  font-size: 0.92rem;
  color: #333;
  padding: 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body hr {
  margin: 12px 0;
  border: 0;
  border-top: 1px solid #ccc; /* cleaner thin line */
}

    .contact-info {
      margin-bottom: 10px;
      display: flex;
      align-items: flex-start;
      line-height: 1.4;
    }
    .contact-info i {
      color: #046bd2;
      margin-right: 8px;
      margin-top: 3px;
    }
    .contact-info strong {
      color: #000;
    }
    h2.section-title {
      font-weight: 700;
      color: #060284;
      margin-bottom: 32px;
    }