body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.research-page {
    background: url('../images/background.webp') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.research-header {
    background-color: rgba(255, 255, 255, 0.8); /* Light background with higher opacity */
    color: #333; /* Dark text color */
    padding: 1rem 0;
    text-align: center;
}

.research-header h1 {
    margin: 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 1rem;
}

nav ul li a {
    color: #333; /* Dark text color for links */
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

.research-main {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.research-section {
    background-color: rgba(255, 255, 255, 0.9); /* Light background with higher opacity */
    color: #333; /* Darker text color */
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px; /* Restrict the width of sections */
    margin: 0 auto 2rem auto; /* Center the section */
    box-sizing: border-box;
    text-align: center;
}

.research-section h2 {
    font-weight: bold; /* Increase font weight for better readability */
    margin-bottom: 1rem;
    font-size: 2rem; /* Increase font size */
    color: #333; /* Darker text color */
}

.research-section p {
    margin-bottom: 1rem;
    font-size: 1.2rem; /* Increase font size */
    color: #333; /* Darker text color */
}

.research-section ul {
    text-align: left;
    color: #333; /* Darker text color */
}

.research-section li {
    margin-bottom: 1rem;
    font-size: 1.2rem; /* Increase font size */
}

.section-image {
    max-width: 50%; /* Further reduce the size of the images */
    height: auto;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.research-footer {
    background-color: rgba(255, 255, 255, 0.8); /* Light background with higher opacity */
    color: #333; /* Dark text color */
    text-align: center;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
