body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 20px;
}

header {
    text-align: center;
    padding: 50px 0;
    background-color: #007bff;
    color: white;
}

header h1 {
    font-size: 3em;
    margin: 0;
}

section {
    margin-top: 40px;
    text-align: center;
}

section h2 {
    color: #333;
    font-size: 2em;
}

section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    font-size: 1.1em;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.button {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0056b3;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: white;
}
