.hero-about {
      position: relative;
      height: 260px;
      overflow: hidden;
    }

    .hero-about img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-about-title {
      position: absolute;
      left: 50%;
      bottom: 50%;
      transform: translateX(-50%);
      color: #ffffff;
      font-size: 54px;
      font-weight: 800;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    }
header.hero-about {
    margin-top: 100px;
}

/* Info Items */
.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.info-item i {
  font-size: 22px;
  color: #ff6a00;
  margin-top: 4px;
}

.info-item h6 {
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 20px;
}

.info-item p {
    margin: 0;
    font-size: 16px;
    color: #000;
}

.info-item img {
    max-width: 32px;
    max-height: 32px;
}

/* Contact Card */
.contact-card {
  background: #4f4a45;
  border-radius: 22px;
}

.contact-card .form-control {
  border-radius: 8px;
  padding: 12px 14px;
}

/* Button */
.btn-orange {
  background: #ff6a00;
  color: #fff;
  border-radius: 8px;
  padding: 10px 24px;
}

.btn-orange:hover {
  background: #e65c00;
  color: #fff;
}

.contact-us h4 {
    font-size: 30px;
}

.contact-us p {
    font-size: 18px;
    font-weight: 300;
}

form button.btn.btn-orange {
    background: #FF4E00;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    height: 50px;
}