body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
	background-color: #FFFFFF;  /* Light Beige */
    color: #000000;             /* Dark Charcoal text */
}

.hero {
    background: url('background.jpg') no-repeat center center/cover;
    background-size: cover;
    width: 100%;
    min-height: 10vh;
    color: white;
    padding: 5rem 0;
    text-align: center;
	padding: 2rem 0;  
}

.hero h1 {
    font-size: 4rem; /* Adjust to the size you prefer */
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px; /* Reduce the margin at the bottom */
    margin-top: -30px; /* Move it higher by decreasing the top margin */
}

.hero h2 {
    font-size: 2rem; /* Adjust to the size you prefer */
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px; /* Reduce the margin at the bottom */
    margin-top: -30px; /* Move it higher by decreasing the top margin */
}


.banner-background {
    background-color: #e6e6e6;
    color: #000000;
    padding: 3rem 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#home.banner-background .container h2 {
    font-size: 1.5rem;  /* Adjust the size of h2 */
    line-height: 1.2;   /* Control line height for better readability */
    margin-bottom: 15px; /* Add space between h2 and p */
}

#home.banner-background .container p {
    font-size: 1.2rem;   /* Adjust the size of p */
    line-height: 1.5;    /* Improve line spacing */
    margin-bottom: 0;    /* Remove margin at the bottom */
}


header {
    background-color: #3B4252; /* Charcoal background */
    color: #ECEFF4;            /* Soft White text */
    color: white;
    padding: 1rem 0;
    text-align: center;
}

header nav a {
    margin: 0 1rem;
    color: white;
    text-decoration: none;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.module-list {
    display: flex;
    gap: 10px;
    padding: 0px 0;
    width: 100%;
    flex-grow: 1;
}

.module-sidebar {
    width: 15%;
    background-color: #333;
    color: #fff;
    padding: 15px;
}

.module-sidebar h3 {
    margin-bottom: 10px;
}

.module-sidebar ul {
    list-style-type: none;
    padding: 0;
}

.module-sidebar ul li {
    margin: 10px 0;
}

.module-sidebar ul li a {
    color: #fff;
    text-decoration: none;
}

.module-sidebar ul li a:hover {
    text-decoration: underline;
}

.module-content {
    width: 85%;
    padding: 15px;
    border-radius: 5px;
    background-color: #f4f4f4;
    overflow: auto;
    min-height: 300px;
}



footer {
    background-color: #3B4252; /* Charcoal background */
    color: #ECEFF4;            /* Soft White text */
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: auto;
}
