body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    position: relative;
    width: 100%;
    height: 300px;
    background-image: url("header-events.webp");
    background-size: cover;
    background-position: center;
}

header .logo {
    position: absolute;
    top: 50px;
    left: 0;
    width: 400px;
    opacity: 0.7;
}

header h1 {
    position: absolute;
    bottom: 5px;
    left: 20px;
    color: white;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

main h2 {
    font-size: 2rem;
    margin-top: 0;
}

main p {
    font-size: 1.2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th,
table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

table th {
    background-color: #f2f2f2;
}

.check {
    list-style: none;
    padding: 0;
}

.check li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.check li::before {
    content: "\f14a"; /* Font Awesome Unicode for square-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #2c3e50;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
}
