.border-line {
  border-bottom: 1px solid #000;
  margin: 1.2rem 0;
}

#banner-section {
  background-color: #ab8d19;
  border-bottom: 1px solid #ddd;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

/* Hero Section Styles */
.hero-section {
  color: #fff;
  background-color: transparent;
  width: 100%;
  height: 75vh;
  display: flex;
  justify-content: end;
  position: relative;
  overflow: hidden;
  z-index: 1;

  /* Background image styles */
  background-position: center;
  background-size: cover; /* Fills the whole section */
  background-repeat: no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-bottom: 50px solid #fff;
}

@media (max-width: 1024px) {
  .hero-section {
    height: 60vh;
  }

  .hero-section::after {
    border-bottom: 30px solid #fff;
  }

  .hero-section p {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .hero-section {
    height: auto;
    text-align: left;
  }

  .hero-section::after {
    border-bottom: 25px solid #fff;
  }

  .hero-section p {
    font-size: 0.95rem;
  }
}

/* Hero Section Styles */

.button {
  border: 0;
  background-color: #ab8d19;
  font-size: 14px;
  vertical-align: baseline;
  color: white;
  text-decoration: inherit;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: fit-content; /* Only as wide as content */
}

.button:hover {
  transform: scale(1.05);
}

.button-primary {
  background-color: #ab8d19;
  color: #fff;
}

.button-secondary {
  background-color: #fff;
  border: 1px solid #ab8d19;
  color: #ab8d19;
}

.footer-link-container > li {
  display: flex;
  justify-content: center;
}

.footer-links {
  background-color: #fff;
  color: #000;
  width: 50%;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  display: inline-block;
  white-space: normal;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0;
}

.section-image {
  width: 100%;
  height: 100%;
  border-radius: 1.2rem;
  box-shadow: 0 0 0.5rem rgba(29, 34, 41, 0.8);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .section-image {
    max-width: 480px;
    max-height: 360px;
  }
}

@media screen and (max-width: 767px) {
  .section-image {
    max-width: 480px;
    max-height: 360px;
  }
}