/* Minimalist Academic Theme */

/* Global Styles */
body {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 32px;
    font-weight: bold;
    color: #222;
}
header h2 {
    font-size: 24px;
    font-weight: bold;
    border-bottom: none;
    color: #444;
    padding-bottom: 5px;
}

nav {
    margin-top: 10px;
}

nav a {
    text-decoration: none;
    color: #0077cc;
    margin: 0 15px;
    font-weight: 600;
}

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

nav a.current {
    color: #045894;
}

/* Main Content */
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #444;
    border-bottom: 2px solid #0077cc;
    padding-bottom: 5px;
}

p {
    margin-bottom: 20px;
    text-align: justify;
}

.container strong a {
    color: #444444; /* Dark Gray */
    text-decoration: none;
}

.container strong a:hover {
    color: #0077cc; /* A subtle blue highlight on hover */
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: white;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

footer p {
    font-size: 14px;
    color: #777;
}
