
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f9fc;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0b3d62;
    padding: 10px 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #376cb1;
    font-size: 16px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background-color: #20c997;
    color: #ffffff;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8faff;
}

.navbar {
    background-color: #ffffff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: #003366;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: 0.3s ease;
}

.navbar ul li a:hover {
    background-color: #20c997;
    color: #ffffff;
}

.custom-footer {
    background-color: #0b3d62;
    padding: 40px 20px;
}

.footer-title {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-divider {
    border-top: 1px solid #ffffff;
}
