@import url('https://fonts.googleapis.com/css2?family=Muli:wght@400;600;700&family=Open+Sans:wght@400;600;700&display=swap');

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --accent-color: #28a745;
    --text-dark: #333;
    --text-light: #555;
    --background-light: #f8f9fa;
    --background-white: #fff;
    --border-color: #dee2e6;
}
@font-face {
    font-family: 'Muli', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-display: swap !important;
}

body,
h1,
strong,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
li,
a {
    font-weight: bold !important;
    font-family: 'Muli', sans-serif;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    background-color: var(--background-light);
    color: var(--text-dark);
    direction: rtl !important;
}
body *{
    direction: rtl !important;
}

article {
    max-width: 800px;
    margin: 30px auto;
    padding: 40px;
    background-color: var(--background-white);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    direction: rtl !important;
}

h1 {
    font-family: 'Muli', sans-serif;
    font-size: 3.2em;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

h2 {
    font-family: 'Muli', sans-serif;
    font-size: 2.4em;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

h3 {
    font-family: 'Muli', sans-serif;
    font-size: 1.8em;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 35px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    color: var(--text-light);
}

ul {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 25px;
}

li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.important {
    font-weight: 600;
    color: var(--accent-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    text-decoration: underline;
    color: darken(var(--primary-color), 10%);
}

h2 + p {
    margin-top: 30px;
}

h2 + ul {
    margin-top: 15px;
}

h3 + ul {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .col-sm-8, .container {
        width: 100% !important;
        max-width: 100% !important;
    }
    article {
        padding: 15px;
    }

    h1 {
        font-size: 2.8em;
        margin-bottom: 30px;
    }

    h2 {
        font-size: 2em;
        margin-top: 35px;
        margin-bottom: 20px;
    }

    ul {
        margin-left: 30px;
    }
}
@media (max-width: 900px) {

    .navbar {
        padding: 0rem 1rem !important;
    }
}

@media (min-width: 900px) {
    .navbar {
        padding: 1rem 1rem !important;
    }
}
.container_header{
    direction: ltr !important;
}