*{
    margin: 20;
    padding: 0;
}
body{
    background-color: beige;
}
.head {
    text-align: center;
    font-weight: bold;
    color: #8f4000; /* You can change this color if needed */
    font-size: 2em; /* Adjust the font size as necessary */
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap; /* Keeps the text in a single line */
}
.billing-link {
    color: #007BFF; /* Replace with your desired color */
    font-weight: bold; /* Optional: makes the text bold */
    text-decoration: none; /* Optional: removes the underline */
}

.billing-link:hover {
    color: #0056b3; /* Change to a darker shade or any hover color you prefer */
    text-decoration: underline; /* Optional: adds underline on hover */
}
.card {
    height: 100%; /* Makes all cards the same height */
    display: flex;
    flex-direction: column;
    margin-bottom: 20px !important; /* Adjust the spacing as needed */
}

.card img {
    object-fit: cover;
    height: 200px; /* Set a fixed height for images */
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.billing-link {
    color: #007BFF; /* Replace with your desired color */
    font-weight: bold; /* Optional: makes the text bold */
    text-decoration: none; /* Optional: removes the underline */
}

.billing-link:hover {
    color: #0056b3; /* Change to a darker shade or any hover color you prefer */
    text-decoration: underline; /* Optional: adds underline on hover */
}
.carousel-item img {
    max-height: 400px; /* Set a maximum height */
    width: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Crop the image to fit the container */
  }
  .carousel-item img {
    max-height: 400px !important;
    object-fit: cover !important;
  }
  .carousel-inner {
    height: auto; /* Ensure no fixed height */
  }
      
  
footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-content p {
    margin: 0;
    padding: 5px 0;
}

.footer-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-content a {
    color: #ddd;
    text-decoration: none;
}

.footer-content a:hover {
    color: #fff;
}

.footer-credits {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 10px;
}  

@media (max-width: 768px) {
    .carousel-image {
      max-height: 300px; /* Smaller height for smaller screens */
    }
  }
  
