span.spamText {
    unicode-bidi: bidi-override; 
    direction: rtl
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
    padding: 0;
    background-color: #f4f4f4;
}
.header {
    background-color: #007aff;
    color: white;
    padding: 20px;
    text-align: center;
}
ul{
    list-style: none;
}
.logo {
    float: right;
}
.app-logo {
    border-radius: 10px;
}
.container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.app-screenshot {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.features, .download, .footer {
    margin-top: 40px;
    text-align: center;
}
.features h2, .download h2, .footer h2 {
    color: #333;
}
.download a {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #007aff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.footer {
    background-color: #333;
    color: white;
    padding: 20px;
}



h1 {
    text-align: center;
    color: #333;
}
p {
    margin-bottom: 20px;
}
.button {
    display: block;
    width: 200px;
    margin: 20px auto;
    padding: 10px;
    text-align: center;
    color: #fff;
    background: #007bff;
    border-radius: 5px;
    text-decoration: none;
}
.button:hover {
    background: #0056b3;
}
.instructions {
    margin-top: 20px;
}
.instructions h2 {
    color: #007bff;
}
.instructions ul {
    padding-left: 20px;
}
.instructions li {
    margin-bottom: 10px;
}
.disclaimer-banner {
    background-color: #cdbd30; /* Yellow background */
    color: #333; /* Dark text color */
    padding: 15px;
    margin: 20px 0;
    border-left: 5px solid #555145; /* Darker yellow border for emphasis */
    font-family: Arial, sans-serif;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.disclaimer-banner h2 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}
.disclaimer-banner p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}