:root {
  --color1: #FF3F33;
  --color2: rgb(67, 112, 136);
  --color3: #075B5E;
  --color4: #9FC87E;
}

/* Header */
header {
    background-color: var(--color3);
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* pour RTL, on pourra inverser si nécessaire */
    direction: rtl; /* important pour l’arabe */
}

.header-left {
    margin-right: 40px; /* remplacer margin-left par margin-right pour RTL */
    display: flex;
    align-items: center;
}

.logo {
    width: 200px;
    height: 50px;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: var(--color3);
    color: white;
    width: 100%;
    margin-top: 20px;
    text-align: center;
    min-height: 90px;
    direction: rtl; /* support RTL pour le texte */
}

footer .links {
    list-style-type: none;
    display: inline-flex;
    padding: 0;
}

footer .links a {
    color: white;
    margin: 5px;
    text-decoration: none;
}
