h5{
    font-family: 'Verdana', sans-serif;
    color: #0a2d3c;
    font-size: 20px;
  }
  
  h4{
    color: #0a2d3c;
    font-family: 'Verdana', sans-serif;
  }

  h3 {
    color: #B38A4C;
  }

  p {
    font-size: 16px;
    font-family: 'Verdana', sans-serif;
    margin: 0;
    font-weight: 4px;
  }

body {
    margin: 0;
    padding: 0;
    background-size: cover;
    font-family: 'Verdana', sans-serif;
    color: #ffffff; /* Text color on top of the image */
  }

  .bottom-left {
    position: absolute;
    bottom: -100px;
    left: 16px;
    color: white;
    font-weight: bold;
  }

  .mainText {
    padding: 15px;
    width: 100%;
    font-size: 20px;
    margin: 0;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
  }

  .subText{
    margin-top: 50px;
  }

  .indexCards {
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .card-img-top{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

  .card-body {
    display: flex;
    flex-direction: column;
  }
  .card {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background-color: #f0efec !important;
  }