
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

.main-header {
    background-color: #333;
    padding: 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

p, li {
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.footer p {
    margin: 0;
}


.section h1 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    text-align: center;
}

.about-section p {
    text-align: justify;
}

.research-section ul {
    list-style-type: square;
}

.contact-section p {
    font-style: italic;
}

a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
}
