/* Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
}

/* Header */
.navbar {
  background-color: #000;
  padding: 10px 20px;
}
.logo img {
  height: 55px;
}

/* Hero Section with responsive image */
.hero-section {
  width: 100%;
  height: auto;
  background-color: #000;
  text-align: center;
}
.hero-img {
    width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Call to Action button (if needed) */
.cta-btn {
  position: absolute;
  left: 10%;
  top: 70%;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background-color: #d89a2c;
}

/* WhatsApp floating CTA section */
.lb_ue {
  background: #000;
  justify-content: space-between;
  padding: 25px 15px;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  width: 100%;
  text-align: center;
  align-items: center;
}
.lb_ue h2 {
  font-size: 30px;
  margin: 0;
  width: 270px;
  text-align: left;
  font-weight: bold;
  line-height: normal;
  color: #fff;
}
.lb_ue h2 span {
  color: #d89a2c;
}
.lb_ue .ue_walink {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 300px);
  justify-content: flex-end;
}
.lb_ue .ue_walink .a_wa {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding: 21px 30px;
  margin: 0 0 0 20px;
  border: 1px solid #d89a2c;
  border-radius: 10px;
  background: #d89a2c;
  text-decoration: none;
}

/* Responsive Styling */
@media(max-width: 768px) {
  .logo {
    text-align: center;
  }
  .logo img {
    height: 45px;
  }
  .cta-btn {
    padding: 14px 45px;
    font-size: 18px;
    left: 20%;
    top: 35%;
  }
  .lb_ue {
    flex-direction: column;
    padding: 5px;
    text-align: center;
  }
  .lb_ue h2 {
    font-size: 24px;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  .lb_ue .ue_walink {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }
  .lb_ue .ue_walink .a_wa {
    font-size: 16px;
    padding: 14px 20px;
    margin: 10px 5px 0;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
