/* Header styles */
.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #201E1F;
    color: #0072bb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 80px;
    width: auto;
    display: block;
}

.logo-link {
    display: inline-block;
    text-decoration: none; /* Remove underline on click */
}

.logo img {
    height: 80px;
    width: auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-social-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-social-buttons img {
    height: 48px;
    width: auto;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.header-social-buttons img:hover {
    transform: scale(1.1);
}

.navigation ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navigation li {
    margin: 0 15px;
}

.navigation a {
    text-decoration: none;
    font-weight: bold;
    color: white;
    font-size: 24px;
    display: inline-block;
    transition: 0.3s ease;
}

.navigation a:hover {
    color: #E98A15;
    transform: scale(1.1);
}