body {
    background: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.section-title {
    background-color: #666300;
    color: white;
    padding: 10px 20px;
    margin-bottom: 20px;
    border-left: 10px solid #ffce00;
}
.scroll-row {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 1rem;
}
.card {
    min-width: 300px;
    max-width: 350px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}
.btn-commander {
    background-color: #666300;
    color: #fff;
}
.btn-commander:hover {
    background-color: #ffce00;
    color: #000;
}
.btn-toggle {
    cursor: pointer;
    color: #666300;
    font-weight: bold;
}
.actualite-paragraphe {
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.event-filter-btn {
    margin-right: 10px;
}
.event-filter-btn.active {
    background-color: #666300;
    color: #fff;
}
