* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}
.container {
    width: 90%;
    max-width: 900px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.header {
    text-align: center;
    margin-bottom: 20px;
}
.header h1 {
    font-size: 2rem;
    color: #333;
}
.content {
    font-size: 1rem;
    color: #555;
}
.content h2 {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #333;
}
.content ul {
    margin-left: 20px;
    list-style-type: disc;
}
.content a {
    color: #007BFF;
    text-decoration: none;
}
.content a:hover {
    text-decoration: underline;
}
.content p {
    margin-bottom: 15px;
}
.content ul li {
    margin-bottom: 8px;
}
footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.875rem;
    color: #777;
}
p span{
    color: #f85b5b;
}