/* start new css  */
.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 80px;
    justify-content: space-between;
}

.header-left {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.profile-icon {
    width: 37px;
    height: 37px;
    border-radius: 5px;
}

.language-selector {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 95px;
    height: 37px;
    background-color: #fafafa;
    border: 1px solid #a0a6bd;
    border-radius: 5px;
    padding: 0 10px;
    gap: 8px;
}

.language-dropdown {
    width: 8px;
    height: 10px;
}

.language-text {
    font-size: 10px;
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
    line-height: 19px;
    text-align: center;
    color: #090909;
}

.language-flag {
    width: 20px;
    height: 20px;
}

.logo {
    width: 153px;
    height: 37px;
}


.divider-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 16px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: #d9d9d9;
}

.divider-text {
    font-size: 12px;
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #000000;
    padding: 0 10px;
}

.footer {
    width: 480px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: auto;
    padding-top: 70px;
    padding-bottom: 40px;
    justify-content: space-between;
}

.footer-text {
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    line-height: 27px;
    color: #000829;
}

.footer-link {
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    line-height: 27px;
    color: #0062ff;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-divider {
    width: 1px;
    height: 10px;
}


@media (max-width: 600px) {
    .footer {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-top: 32px;
        padding-bottom: 20px;
    }
    .footer-text,
    .footer-link {
        font-size: 12px;
        line-height: 20px;
        text-align: left;
    }
    .footer-divider {
        display: none;
    }
}

/* end new css */