body {
    font-family: 'Heebo', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    direction: rtl;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(90deg, #002147, #0056b3);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo-img {
    height: 10px !important; /* הקטנת הלוגו */
    width: auto !important; /* שומר על פרופורציות */
    max-width: 10px; /* מגביל את הרוחב */
    opacity: 0.9;
    transition: opacity 0.3s;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

footer {
    background: #002147;
    color: white;
    text-align: center;
    padding: 20px;
}