h1 {
    text-align: center;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
}

 /* Remove the navbar's default margin-bottom and rounded borders */ 
    .navbar {
      margin-bottom: 0;
      border-radius: 0;
    }
    
    /* footer */
    footer {
  width: 100%;
  color: white;
  text-align: center;
      background-color: #4da6ff;
      padding: 25px;
    }

.well img {
    width: 100%;
    height: auto;
}

.header-container {
    display: flex;
    align-items: center;
    padding: 15px 20px; /* Spacing around header */
    background: #4da6ff; 
    border-bottom: 2px solid #ddd; /* Subtle separator */
}

.header-logo {
    max-width: 80px; /* Adjust logo size */
    margin-right: 15px;
}

.header-title {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff; /* Adjust to match site */
}

    .carousel {
    max-width: 900px; /* Adjust as needed */
    margin: auto; /* Center the carousel */
}
    
  .carousel-inner img {
      min-height: 200px;
       max-height: 700px; /* Adjust to desired height */
    width: auto; /* Maintain aspect ratio */
    margin: auto; /* Center the image *
  }

  .carousel-caption {
    padding: 5px 10px; /* Reduce padding to shrink the box */
    max-width: 50%; /* Adjust the width of the caption box */
    background: #4da6ff;
    color: white;
    border-radius: 5px; /* Optional: Rounds the corners for a smoother look */
}

/* Further reduce the box size on smaller screens */
@media (max-width: 768px) {
    .carousel-caption {
        padding: 3px 8px; /* Reduce padding more on smaller screens */
        max-width: 40%; /* Make it narrower if needed */
    }
}