body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    direction: rtl;
    text-align: right;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px;
}
h1 {
    color: #004a99;
}
h2, h3 {
    color: #333;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
table, th, td {
    border: 1px solid #ddd;
}
th, td {
    padding: 10px;
    text-align: right;
}
.button-container {
    text-align: center;
    margin: 20px 0;
}
.button {
    background-color: #0073e6;
    color: white;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    animation: blink 1s infinite;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@keyframes blink {
    50% {
        opacity: 0;
    }
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}
.toc {
    margin: 20px 0;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
}
.toc ul {
    list-style-type: none;
    padding: 0;
}
.toc ul li {
    padding: 5px 0;
}
.toc ul li a {
    text-decoration: none;
    color: #0073e6;
}
.faq {
    margin: 20px 0;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
}
.faq h3 {
    margin-top: 0;
}
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-section {
    flex: 1 1 50%;
    padding: 10px;
    box-sizing: border-box;
}
.footer-section h3 {
    text-align: center;
}
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.social-icons a {
    color: white;
    margin: 10px;
    text-decoration: none;
    font-size: 24px;
}
.social-icons img {
    width: 30px;
    height: 30px;
}
.similar-websites a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 5px 0;
    text-align: center;
}
.copyright {
    margin-top: 20px;
}
.scroll-up {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0073e6;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
}
.logo {
    text-align: center;
    margin: 20px 0;
    background-color: #004a99;
    padding: 10px;
}
.logo img {
    max-width: 200px;
    height: auto;
}
.accessibility-button {
    background-color: #000;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    display: block;
    margin: 20px auto;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}
@media (max-width: 768px) {
    .footer-section {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .social-icons a {
        margin: 5px;
    }
}
