* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.container {
    width: 80%;
    margin: auto;
}

.header-content {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end; /* Align navigation links to the right */
}

nav ul li {
    margin-left: 20px;
	font-weight: bold; /* Make CSS links bold */
}

nav ul li:first-child {
    margin-left: 5vw; /* Remove margin from the first navigation item */
}

nav ul li a {
    text-decoration: none;
    color: #fff;
	font-weight: bold;
	text-align: left;
}

header {
    background-color: #a2a2a2; /* Light gray background */
    color: #fff; /* Adjust text color */
	position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

#logo {
	width: 40%; /* Reduce the logo's width to 50% of its current size */
    max-width: 100%; /* Ensure logo does not exceed its container's width */
    height: auto; /* Maintain aspect ratio */
    font-weight: bold;
}


.section {
    padding: 20px 0;
    text-align: justify;
}


.content-wrapper {
    display: flex;
    flex-direction: row;
}

.text {
    flex: 1;
    padding-right: 20px; /* Adjust spacing between text and image */
}

.image {
    flex: 1;
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
}

.image img {
    max-width: 100%; /* Ensure the image doesn't exceed its container's width */
    height: auto; /* Maintain aspect ratio */
}


footer {
    background-color: #a2a2a2;
    color: #fff;
    padding: 5px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-weight: bold;
}

/* Responsive Styling */
@media only screen and (max-width: 768px) {
    #logo {
		width: 30%; /* Reduce the logo's width to 50% of its current size */
        max-width: 80%; /* Adjust max-width for smaller screens */
    }

    nav ul li {
        display: block;
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 1200px) {
    .container {
        width: 60%; /* Adjust container width for larger screens */
    }
}
