.presentation-container,
.agenda-container {
    width: 100%;
    max-width: 1280px;
    margin: 2rem auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.presentation-text {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    color: var(--text-color);
}

.agenda-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.event-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.event-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.event-item h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.event-item h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.event-item p {
    line-height: 1.6;
}

/* Préparation pour les animations GSAP */
.presentation-container,
.agenda-title,
.event-item {
    opacity: 0;
    transform: translateY(20px);
}