body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333;
}

header img {
    width: 100%;
    height: auto;
}

main {
    text-align: center;
    padding: 40px 20px;
}

h1 {
    font-size: 2.2em;
    color: #2c3e50;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.6em;
    color: #2c3e50;
    margin: 30px 0 15px;
}

p, li {
    font-size: 1.2em;
    margin-bottom: 15px;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

a {
    color: #2c3e50;
    text-decoration: none;
}

.button {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    margin-top: 20px;
}

.button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

footer {
    text-align: center;
    margin: 40px 0 20px 0;
    font-size: 0.9em;
}

footer a {
    margin: 0 10px;
    color: #007BFF;
}

footer a:hover {
    text-decoration: underline;
}
