body p{
  font-family: system-ui, sans-serif !important;
}

.inter-loaded body {
  font-family: system-ui, sans-serif !important;
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6{
  font-family: 'Inter', system-ui, sans-serif !important;
  font-weight: 400;
  font-size: 20px !important;
  color:  #f7c122;
  line-height: 1.3;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
/* === Hero Section (CLS-Safe) === */
.hero-container {
  max-width: 950px !important;
  margin: 60px auto !important;
  padding: 50px 30px !important;
  background: linear-gradient(135deg, #ffffff 0%, #eef3f9 100%);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-family: system-ui, sans-serif !important;
  font-weight: 400;
  color: #222;
  position: relative;
  min-height: 420px; /* Increased to cover full content space */
}
.hero-title {
  min-height: 38px !important; /* Try increasing this slightly */
}
.hero-subtitle {
  min-height: 32px !important;
  color:  #267e01;
}

.hero-container img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero-container img:hover {
  transform: scale(1.05);
}

.hero-container,
.hero-container h1 {
  font-size: 24px !important;
  font-weight: 600;
  line-height: 1.3;
  margin: 15px 0 10px;
  min-height: 32px !important; /* Prevent shift from dynamic rendering */
  color: #d49000;
}

.hero-container p {
  font-size: 16px !important;
  line-height: 1.8;
  color: #333;
  max-width: 800px;
  margin: 0 auto 20px;
  min-height: 32px;
}

.hero-container .cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 32px;
  background: linear-gradient(90deg, #0077ff, #004aad);
  color: #fff;
  font-size: 22px !important;
  font-weight: 500;
  border: none;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 119, 255, 0.3);
  transition: all 0.3s ease;
}

.hero-container .cta-button:hover {
  background: linear-gradient(90deg, #004aad, #002e80);
  box-shadow: 0 6px 20px rgba(0, 74, 173, 0.35);
}
