/* Reset some basic styles */
body, h1, p, nav, footer, header, main {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Style the header */

.head-logo {
    width: 50px;
    height: 50px;
}

.nav-bar {
    display: flex;
    margin: auto;
    justify-content: space-between;
}


header {
    background-color: #0389ff;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
}

header nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
}

header nav a:hover {
    background-color: #025bb5;
    border-radius: 5px;
}




/* Style the main content area */
main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.page-content h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #0e355d;
}

.page-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Style the footer */
footer {
    background-color: #0389ff;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}
