body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 10px;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
h1 {
    color: #ffa726;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}
p {
    line-height: 1.6;
    margin-bottom: 15px;
}
ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}
ul li {
    margin-bottom: 10px;
}
.disclaimer {
    font-size: 0.9rem;
    color: #ffab91;
    border-top: 1px solid #444;
    margin-top: 20px;
    padding-top: 10px;
}
.button {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    background-color: #333;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    border: 2px solid #444;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button:hover {
    background-color: #ffa726;
    color: #121212;
}
.button i {
    margin-right: 10px; /* Add space between icon and text */
}
