/* Basic Styling */
body {
    font-family: 'Poppins', sans-serif; /* Use Poppins font */
    color: #272320;
    margin-top: 0;
    margin-left: 20px;
    padding: 0;
    background-color: #F4F6F9;
}

header {
    background-color: #272320;
    color: #F4F6F9;
    margin-left: -20px;
    padding: 20px;
    display: flex;
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
}
.logo-image {
    max-height: 60px; /* Adjust the maximum height of the logo */
    width: auto;
    margin-right: 10px;
}
.company-name {
    font-size: 40px; /* Adjust the font size of the company name */
    font-family: 'Poppins', sans-serif; /* Use Poppins font */
    font-style: normal;
    font-weight: 600; /* Bold weight */
}

nav {
    background-color: #1C9EAE;
    padding: 20px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100px;
    overflow-y: auto;
    font-family: 'Poppins', sans-serif; /* Use Poppins font */
    font-weight: 600; /* Bold weight */
}
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
nav ul li {
    padding: 10px 0;
    text-align: center;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: block;
    text-transform: uppercase; /* Convert text to uppercase */
}
.menu-bar {
    background-color: #272320;
    color: #F4F6F9;
    padding: 10px;
    display: flex;
    justify-content: space-between; /* Move the button to the left */
    align-items: center; /* Center items vertically */
    margin-bottom: 20px; /* Add margin to create space between menu bar and menu */
}

nav.menu.active {
    display: block; /* Show the menu when active */
}

nav.menu ul {
    list-style-type: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

nav.menu ul li {
    margin-bottom: 10px;
}

nav.menu ul li:last-child {
    margin-bottom: 0;
}

nav.menu ul li a {
    color: #F4F6F9;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase; /* Convert text to uppercase */
}

nav.menu ul li a:hover {
    color: #272320; /* Change color on hover */
}

main {
    margin-left: 220px; /* Adjust based on nav width */
    padding: 20px;
    transition: margin-left 0.5s;
}
.content-section {
    margin-bottom: 40px;
}
.content-section h2 {
    margin-left: 0; /* Adjust the left margin as needed */
    text-transform: uppercase;
}
footer {
    background-color: #1C9EAE;
    color: #fff;
    margin-left: -20px;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-family: 'Poppins', sans-serif; /* Use Poppins font */
    font-weight: 600; /* Bold weight */
}
.content-section {
    display: none;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1C9EAE;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    background-color: #13707E;
}