.agenda-section {
    padding: 40px 60px;
    background-color: rgb(216, 214, 214);
}

.agenda-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.agenda-section h2 {
    font-size: 48px;
    font-family: 'Bebas Neue', sans-serif;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.agenda-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.agenda-list li {
    background-color: #f4f4f4;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.agenda-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}