.topbar {
    background-color: #ffffff;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    border-bottom: 1px solid #f1f1f1;
}

.topbar-left, .topbar-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.img, .svg {
    color: #088a9c;
}

.topbar-item {
    color: #088a9c;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    /* Applied bold weight here */
    font-weight: 700;
}

/* Hover effect */
a.topbar-item:hover {
    color: #dc3545;
}

@media (max-width: 850px) {
    .topbar {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }

    .topbar-left, .topbar-right {
        justify-content: center;
        gap: 15px;
    }
}
