.contact-hero {
  background: linear-gradient(to right, #0f172a, #1e293b);
  padding: 80px 20px;
  text-align: center;
  color: white;
}
.contact-hero h1 {
  font-size: 42px;
  font-weight: bold;
  color: #ffcc00;
}
.contact-hero p {
  font-size: 18px;
  opacity: 0.85;
}
.contact-form {
  padding: 60px 20px;
}
.contact-form h2 {
  text-align: center;
  color: #222;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}
.contact-form .btn {
  background: #ffcc00;
  color: #222;
  font-size: 18px;
  padding: 12px 25px;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.contact-form .btn:hover {
  transform: scale(1.05);
  box-shadow: 0px 5px 15px rgba(255, 204, 0, 0.3);
}
.contact-info {
  padding: 60px 20px;
  text-align: center;
  background: #1e293b;
  color: white;
}
.contact-info h2 {
  color: #ffcc00;
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 18px;
}
.contact-info i {
  font-size: 22px;
  color: #ffcc00;
  margin-right: 5px;
}
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-form h2 {
    font-size: 28px;
  }

  .contact-info h2 {
    font-size: 28px;
  }
}
