.header-text h1 {
    text-align: right;
}

.arabic {
    direction: rtl;
    text-align: right;
}

/* @media (min-width: ) {
    
} */
.page-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130px;
    width: 100%;
    background-color: #fafafa;
    padding: 5px 10px;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0px 0px 10px #e0e0e0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    position: relative;
}

.header-wrapper > a:first-child {
    height: 100%;
    max-width: 100px;
}

.header-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.header-wrapper h1 {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.lang-btn {
    margin-top: 6px;
    float: right;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    background-color: #dbc147;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    text-decoration: none;
}

.lang-btn button {
    font-weight: 600px !important;
    cursor: pointer;
    background-color: transparent;
    border: none;
    color: #000;
}

.lang-btn:hover {
    background-color: #b9a138;
}

.lang-btn:hover button {
    background-color: transparent;
    background-color: #b9a138;
}

.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 180px);
    width: 100%;
    padding: 20px;
}

.footer-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 20px;
    background-color: #fafafa;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0px 0px 10px #e0e0e0;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1200px;
}

.content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
}

.content h2 {
    font-size: 1.4rem;
    font-weight: bold;
}

.content h3 {
    font-size: 1.3rem;
}

.content h4 {
    font-size: 1.15rem;
}

.content p {
    font-size: 1rem;
}

@media (min-width: 768px) {
    .page-header {
        padding: 20px 75px;
    }

    .header-wrapper h1 {
        font-size: 1.5rem;
    }
}

