/* Our Brokers page styles (extracted from former inline <style> to avoid layout changes) */

.hero {
  background: linear-gradient(135deg, #ffaf01, #ba7f01);
  color: #fff;
  padding: 100px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  opacity: 1;
}

.hero img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  color: #0f172a;
  margin-bottom: 10px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-grid img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.content-grid h3 {
  font-size: 44px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #0f172a;
}

.content-grid p {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #6c757d;
}

.features {
  background: #fff;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card h4 {
  color: #0f172a;
  margin-bottom: 15px;
  font-size: 25px;
}

.help-section {
  background: #0f172a;
  color: #fff;
}

.help-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.help-wrapper img {
  width: 100%;
  border-radius: 18px;
}

.help-list {
  list-style: none;
}

.help-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.benefits {
  background: #fff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.benefit-item {
  background: #f8fafc;
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid #ffaf01;
}


@media (max-width: 991px) {
  .hero-content,
  .content-grid,
  .help-wrapper {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 40px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .content-grid h3 {
    font-size: 28px;
  }
}

