/* General body styles */
body {
    font-family: 'Segoe UI', Arial, sans-serif; /* Elegant and smooth font */
    color: #f0f0f0; /* Soft white color for text */
    background-color: #333; /* Deep gray background for elegance */
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #444; /* Softened dark gray for the header */
    color: #f0f0f0;
    padding: 20px 0;
    border-bottom: 2px solid #0085a1; /* Soft blue for a professional look */
}

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

header a.logo {
    color: #0085a1; /* Soft blue matching the border for consistency */
    text-decoration: none;
    font-size: 1.6em; /* Slightly larger for prominence */
}

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

nav ul.nav-links li {
    display: inline;
    margin-left: 20px;
}

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

footer {
    background: #383838; /* Dark gray footer background for elegance */
    color: #cccccc; /* Light gray text for readability */
    text-align: center;
    padding: 10px 0;
    border-top: 2px solid #0085a1; /* Matching the header border */
}

footer .container p {
    margin: 5px; /* Minimal margin for a clean layout */
}
