/* HERO SECTION */
.hero-section {
  background: #1F6FEB;
  padding: 80px 0;
  color: #ffffff;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.hero-left h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 18px;
  margin-top: 20px;
  color: #e9f1ff;
  line-height: 1.6;
  max-width: 90%;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 30px 0;
}

.trust-item {
  background: rgba(255, 255, 255, 0.18);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 15px;
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  background: #F7931E;
  padding: 14px 26px;
  color: #ffffff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #0A1F44;
}

.cta-link {
  color: #ffffff;
  font-size: 16px;
  text-decoration: underline;
  margin-top: 14px;
}

.hero-right img {
  width: 100%;
  max-width: 420px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 34px;
  }

  .hero-trust-grid {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
	/* Remove page content box limit */
.page .entry-content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Make section edge-to-edge */
.hero-section {
  width: 100%;
  margin: 0 auto;
  border-radius: 0;
}

}

