body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: white;
}

header {
    background: red;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: yellow;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: #222;
}

.content {
    padding: 40px;
    max-width: 1000px;
    margin: auto;
}

.card {
    background: #222;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

button {
    background: red;
    border: none;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: darkred;
}

footer {
    background: red;
    text-align: center;
    padding: 10px;
    margin-top: 40px;
}

.agenda-table {
    width: 100%;
    border-collapse: collapse;
}

.agenda-table th,
.agenda-table td {
    border: 1px solid #444;
    padding: 10px;
    text-align: center;
}

.agenda-table th {
    background: #222;
}
