body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

nav {
    background-color: #333;
    color: #fff;
    padding: 10px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.banner {
    min-height: 270px;
    position: relative;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    overflow: hidden; /* Ensure the image doesn't overflow the banner div */
    border-radius: 0.3rem; /* Adjust border radius as needed */
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column; /* Stack h1 and p vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner h1, 
.banner p {
    position: relative;
    z-index: 2;
    margin: 0; /* Remove any default margins that may cause spacing issues */
}

.banner p {
    margin-top: 0.5rem; /* Add a small gap between h1 and p */
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay for better text readability */
    z-index: 1;
}


.page-container {
    min-height: 100vh;
}

.bg-light-brown {
    background-color: #d3b691;
}

.card-body {
    background-color: #8e8e8e; /* Slightly lighter than the default background */
}
.card-text {
    background-color: #817b82; /* Slightly darker than the default background */
    padding: 15px;
    border-radius: 5px;
}
