/* General */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Atkinson Hyperlegible';
    background-color:#e6eff8;
}

h1 {
    color: #333;
    font-size: 2.2rem;
    margin: 0;
}

h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h3 {
    color:rgb(96, 130, 194);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

p {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e6eff8;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar h1 {
    color: rgb(52, 48, 48);
    font-size: 2.2rem;
    margin: 0;
}
.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.nav-links li {
    margin: 0 1rem;
}
.nav-links a {
    color: rgb(52, 48, 48);
    /* text-decoration: none; */
    font-size: 1rem;
}
.nav-links a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}


/* About */
.about-section {
    display: flex;
    padding: 2rem;
    background-color: #fff;
    max-width: 1200px;
    margin: 2rem auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.about-left {
    flex: 0.4; /* Set the left side to take 40% width */
    padding: 1rem;
    text-align: center;
    border-right: 1px solid #ddd;
}
.about-right {
    flex: 0.6; /* Set the right side to take 60% width */
    padding: 1rem;
    text-align: left;
}
.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #ddd;
}


/* News */
.news-section {
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.news-content {
    max-height: 200px;
    overflow-y: auto; 
    overflow-x: hidden;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 1.4em;
}
.news-content li strong {
    /* font-size: 1.4em; */
    color:rgb(96, 130, 194);
}

/* Publication */
.publication-section {
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.publication-block {
    display: flex;
    align-items: center;
    margin-bottom: 1.8rem;
    padding: 1rem 0;
}
.publication-image {
    width: 35%;
    height: auto;
    margin-right: 1.5rem;
    border-radius: 4px;
    border: 1px solid #ddd;
}
.publication-details {
    flex: 1;
}
.publication-details h3 {
    margin-bottom: 0.5rem;
}
.publication-details p {
    margin-bottom: 0.5rem;
    /* font-size: 1rem;
    color: #555; */
}
hr {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 1rem 0;
}