   /* About page */

  .values-section {
    padding: 40px;
  }

  .values-section h2 {
    color: #053471;
    font-size: 40px;
    font-weight: 700;
    position: relative;
    display: inline-block;
  }
  
  .values-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%; /* 80% of the h2 width */
    height: 3px;
    background-color: #ff6b6b;
  }

  .value {
    margin-bottom: 20px;
  }

  .value h4 {
    color: #f0602f;
    font-size: 24px;
    font-weight: 600;
  }

  .value span {
    color: #002653;
  }

  .value p {
    color: #002653;
  }

  .contact-section {
    background-color: #002653;
    color: white;
    padding: 20px;
    border-radius: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .contact-section li {
    color: white;
    font-size: 30px;
    font-weight: 600;
    padding: 20px 0;
    position: relative;
  }

  .contact-section li::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
  }

  .contact-section .btn-call {
    min-width: 338px;
    border-radius: 60px;
    background-color: #f0602f;
    color: white;
    border: none;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    margin: 0px auto 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .btn-call:before,
.btn-call:after {
  content: '';
  display: block;
  width: 150px; 
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: -53px; 
  left: 30%; 
  transform: scale(10);
  opacity: 1;
}

.btn-call:before {
  animation: beacon 2.4s linear 0.6s infinite;
}

.btn-call:after {
  animation: beacon 1.8s linear infinite;
}

@keyframes beacon {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

  .contact-section .btn-call:hover {
    background-color: #d9542b;
    color: white;
  }

  /* acc */
  .list-unstyled {
    list-style: none;
    padding: 0;
  }
  
  .list-unstyled li {
    cursor: pointer;
    margin: 10px 0;
  }
  
  .d-none {
    display: none;
  }
  
  p {
    margin: 0;
    padding: 10px;
    font-size: 14px;
  }
  
  .slide {
    transition: max-height 300ms ease-in-out;
    overflow: hidden;
    max-height: 0;
  }

  /* Responsive Styles */
  @media (max-width: 767px) {
    .values-section {
      padding: 20px;
    }

    .values-section h2 {
      font-size: 30px;
      text-align: center;
    }
    .values-section h2::after {
     width: 50%;
     left: 25%;
    }
    .values-section p {
      text-align: center;
    }

    .value h4 {
      font-size: 20px;
      text-align: center;
    }
    .value p {
      text-align: center;
    }

    .contact-section {
      border-radius: 20px;
      padding: 20px;
      /* width: 80%; */
    }

    .contact-section li {
      font-size: 24px;
    }

    .contact-section .btn-call {
      min-width: 100%;
      border-radius: 30px;
      margin: 0px auto 0px;
    }
  }

  @media (min-width: 768px) and (max-width: 991px) {
    .values-section {
      padding: 30px;
    }

    .values-section h2 {
      font-size: 35px;
    }

    .value h4 {
      font-size: 22px;
    }

    .contact-section {
      border-radius: 30px;
      padding: 30px;
    }

    .contact-section li {
      font-size: 28px;
    }

    .contact-section .btn-call {
      min-width: 80%;
      border-radius: 40px;
    }

}