.marche-description {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .marche-description {
        display: none;
    }
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.highlight-item {
    background: white;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.highlight-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.highlight-item h3 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-item p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-color);
    flex-grow: 1;
}