ul {
  list-style-type: disc !important;
}

/* Banner Section */
.banner-section {
  color: #fff;
  height: 60vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  padding-top: 150px;
  overflow: hidden;
  background-color: #1f1f1f !important;
  font-family: "HelveticaNowDisplay-Black";
  cursor: default;
  /* background-image: url("/assets/services/stars.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: calc(100% - 20px) 10px;*/
}

/* .banner-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
} */

.banner-section * {
  position: relative;
  z-index: 2;
}

.banner-section-sec {
  color: #1f1f1f;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #ffffff !important;
  font-family: "Poppins", sans-serif;
  cursor: default;
  padding: 40px;
  padding-top: 0px;
}

.banner-wrapper {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* aligns button to left */
  text-align: left;
  gap: 20px;
}

.banner-content {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  max-width: 800px;
  height: 100vh;
  padding-left: 20px;
}

.banner-content h2 {
  font-size: 40px;
  line-height: 1.2;
}

.banner-content p {
  margin: 20px 0;
  line-height: 1.6;
  font-family: "HelveticaNowDisplay" !important;
  color: #eee;
}

.btn-cta {
  display: inline-block;
  padding: 10px 20px;
  background-color: #aefe14;
  color: #1f1f1f;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.btn-cta:hover {
  color: #aefe14;
  background-color: #1f1f1f;
}

.semi-info {
  color: #1f1f1f;
  background-color: #f7f7f7 !important;
  font-family: "Poppins", sans-serif;
  cursor: default;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.semi-info h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1f1f1f;
}

.semi-info ul {
  list-style-type: disc !important;
  padding-left: 20px;
  margin: 0;
}

.semi-info li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #1f1f1f;
}

/* packages section */
.packages {
  background-color: #fff;
  font-family: "Poppins";
  height: auto;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 3%;
}

.package {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(200, 200, 200, 0.35);
  padding: 30px 25px;
  max-width: 400px;
  position: relative;
  transition: 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 10px;
  overflow: hidden;
}

/* Hover effect */
.package:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #aefe14;
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 32px rgba(174, 254, 20, 0.25);
}

/* Best package styles */
.package.best {
  border: 1px solid #1f1f1f;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(174, 254, 20, 0.3);
}

.best::before {
  content: "Best package";
  position: absolute;
  top: -5px;
  left: 25px;
  background-color: #1f1f1f;
  color: #aefe14;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}

/* Package content */
.package h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.price {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1f1f1f;
}

.desc {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #333;
}

.package ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 0.9rem;
  color: #444;
}

.package ul li {
  margin-bottom: 10px;
}

/* Responsive layout */
@media (max-width: 768px) {

  .exception {
    height: auto !important;
  }

  .pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .banner-section {
    height: auto;
    padding: 40px;
    padding-top: 30%;
  }

  .banner-content {
    justify-content: center;
    align-items: flex-start;
    height: auto;
  }
}