body {
  background-color: #edf6f1;
  color: #152f2a;
  font-family: 'Source Sans Pro', sans-serif;
}

/* Hero Banner Styles */
.hero-banner {
  position: relative;
  height: 80vh; /* Reduced height of the banner */
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align text to the left */
  padding-left: 2rem; /* Add space between text and edge */
  overflow: hidden;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 30, 26, 0.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 500px; /* Limit text width for readability */
  color: #ffffff;
}
 
 .hero-content h1 {
   font-size: 3rem;
   line-height: 1.2;
   font-weight: 700;
   color: #ffffff;
 }
 
 .hero-content p {
   font-size: 1.25rem;
   margin-top: 1rem;
   color: #ffffff;
 }
 
 .hero-content .btn {
   background-color: #28a745;
   border-color: #28a745;
   color: #ffffff;
   padding: 0.75rem 1.5rem;
   font-size: 1.2rem;
   text-transform: uppercase;
   font-weight: bold;
 }
 
 .hero-content .btn:hover {
   background-color: #218838;
   border-color: #1e7e34;
 } 

 /* Featured Plans Section */
.featured-plans {
  background-color: #ffffff; /* White background */
  border-radius: 0.5rem; /* Subtle rounded corners */
  padding: 2rem;
}

.featured-plans h2 {
  color: #2d3436; /* Darker title color */
  font-weight: 700;
}

.featured-plans p {
  color: #6c757d; /* Muted subtitle color */
}

.featured-plans .carousel-inner {
  padding: 1rem 0;
}

.featured-plans .card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.featured-plans .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.featured-plans .carousel-control-prev,
.featured-plans .carousel-control-next {
  width: 5%;
  background-color: rgba(21, 47, 42, 0.5);
  border-radius: 50%;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.featured-plans .carousel-control-prev {
  left: -30px;
}

.featured-plans .carousel-control-next {
  right: -30px;
}

.featured-plans .carousel-control-prev-icon,
.featured-plans .carousel-control-next-icon {
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {
  .featured-plans .carousel-item .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .featured-plans .carousel-item .col-md-3 {
    flex: 0 0 auto;
    width: 80%;
  }

  .featured-plans .carousel-control-prev,
  .featured-plans .carousel-control-next {
    display: none;
  }
}