body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the contents of the navbar */
    padding: 0 20px;
    height: 100px;
    position: relative;
}

.logo {
    position: absolute;
    left: 20px;
}

.logo-img {
    height: 80px;
    width: 100px;
}

.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white; /* Set the link color to white */
    padding: 14px 16px;
    text-decoration: none;
    transition: background-color 0.3s ease, text-decoration 0.3s ease;
    margin-left: 30px;
    margin-right: 30px;
    font-size: large;
}

.nav-link:hover,
.nav-link:focus {
    background-color: 495057;
    color: white; /* Ensure the color remains white on hover */
    text-decoration: underline;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 300px;
    top: 100%;
    left: 0;
    list-style-type: none;
    margin: 0;
    padding: 0; /* Add padding to the dropdown menu */
    z-index: 1000; /* Ensure the dropdown appears above other elements */
}

.dropdown-item {
    color: #333;
    padding: 10px 10px; /* Add padding to dropdown items */
    margin: 20px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:not(:last-child) {
    margin-bottom: 5px; /* Add space between items */
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #575757;
    color: white;
    text-decoration: underline;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 20px; /* Adjust as needed for spacing around the container */
}

.text-content {
    flex: 1;
    margin-right: 70px; /* Space between the text and the image */
    margin-left: 25px;
    
}

.image-container {
    flex: 0 0 auto;
}

h2{
    font-size: 40px;
}

p{
    font-size: 20px;
}


.side-image {
    width: 600px;  /* Set the desired width */
    height: 400px; /* Set the desired height */
    object-fit: cover; /* Ensure the image covers the area while maintaining aspect ratio */
}