.banner-bg {
    position: relative;
    width: 100%;
    height: auto;
}

.banner-bg img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-content {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust to center */
    color: white;
    text-align: center;
}

.banner-content h1 {
    font-size: 2.5rem;
    margin: 0;
}

.banner-content p {
    font-size: 1.2rem;
}


.whatsapp-info {
    font-style: italic;
    color: #6c757d; /* Match with your form's text color */
    font-size: 12px;
    margin-top:5px;
  }
  
  .first-line {
    display: flex;
    align-items: center;
    justify-self: center;
    font-family: 'Noto Sans';
  }
  
  .second-line {
    margin-top: 3px; /* Optional: add some space between the two lines */
  }
  
  .whatsapp-logo-inline {
    width: 12px; /* Adjust the size as needed */
    height: auto;
    margin: 0 5px;
    vertical-align: middle;
  }
  
  .italic-text {
    font-style: italic;
    color: inherit;
    text-align: center;
    display:flex;
    justify-content: center;
    font-family: 'Noto Sans';
  }

  .modal-bg{
    gap: 20px;
    /* padding: 35px; */
    /* background-color: #F0F5AD; */
    background-color: #BFFDE8;
    width: 100%;
    /* font-family: var(--ff-primary); */
    font-family: 'Noto Sans'
  }

  .input-control{
    position: relative;
    width: 100%;
    height: 40px;
    background-color: '#FFFFFF';
    border: none;
    text-align: center;
    font-size: 12px;
    border-width: 0px 0px 1px 1px;
    border-style: solid;
    border-color: rgba(84, 84, 84, 0.5);
    box-shadow: 0px 4px 2px rgba(84, 84, 84, 0.08);
    border-radius: 8px 0px;
    font-family: 'Noto Sans';
  }


.input-control-arrow {
  appearance: none; /* Remove default styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-caret-down-fill" viewBox="0 0 16 16"><path d="M7.247 11.14 2.451 6.344a.5.5 0 0 1 .708-.708l4.588 4.588 4.588-4.588a.5.5 0 1 1 .708.708l-4.796 4.796a.5.5 0 0 1-.708 0z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 30px; /* Space for the arrow */
}

.modal-button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-family: 'Noto Sans';
}
  
.error,
.error p,
label.error {
  font-size: 14px;
  margin-top: 0;
  color: #ff0000;
  font-family: 'Noto Sans';
}

.faq {
  position: relative;
  margin-left: 20px;
  margin-right:20px;
}
.faq h1 {
  position: relative;
  font-family: var(--ff-primary);
  font-size: 30px;
  color: var(--clr-neutral-900);
}
@media (max-width: 768px) {
  .faq h1 {
    font-size: 16px;
  }
}

.faq .accordion {
  border-radius: 0;
}
.faq .accordion .accordion-item {
  border-left: 0;
  border-right: 0;
  border-radius: 0 !important;
}
.faq .accordion .accordion-button {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 768px) {
  .faq .accordion .accordion-button {
    font-size: 14px;
  }
}
.faq .accordion .accordion-button p {
  font-size: 16px;
  color: var(--clr-neutral-900);
}
@media (max-width: 768px) {
  .faq .accordion .accordion-button p {
    font-size: 14px;
  }
}
.faq .accordion .accordion-button::after {
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/add-square.svg");
}
.faq .accordion .accordion-button:not(.collapsed)::after {
  background-image: url("../images/icons/minus-square.svg");
  transform: none;
}
.faq .accordion .accordion-body {
  padding: 10px 0;
}
.faq .accordion .accordion-body p {
  font-size: 16px;
  color: var(--clr-neutral-600);
}
@media (max-width: 768px) {
  .faq .accordion .accordion-body p {
    font-size: 14px;
  }
}
