.hero-section {
  background-color: #fff8dc;
  padding: 40px 20px 60px; /* Reduced top padding */
}

.hero-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.hero-text {
  flex: 1 1 700px;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #000;
  line-height: 1.3;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #333;
}

.cta-btn {
  background-color: #000;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
  display: inline-block;
}

.cta-btn:hover {
  background-color: #444;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .cta-btn {
    padding: 12px 20px;
  }
}

.about-us-home {
  background-color: #fffef0;
  padding: 20px 20px;
}

.about-wrapper {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.about-text h2 {
  font-size: 36px;
  color: #222;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-text .btn {
  background: #000;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}

.about-text .btn:hover {
  background: #444;
}

@media (max-width: 768px) {
  .about-text h2 {
    font-size: 28px;
  }
}

.trust-indicators {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  font-size: 14px;
  color: #444;
}


