.key-thematic {
    background-color: #1e40af;
    padding: 10px 0;
}

.thematic-title {
    color: white;
    text-align: center;
    /* margin-bottom: 30px; */
    font-size: 28px;
    font-weight: 600;
}

.thematic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.thematic-item {
    text-align: center;
}

.thematic-icon {
    width: 100px;
    height: 100px;
    padding: 20px;
    background-color: white;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: contain;
}

.thematic-text {
    font-size: 14px;
    line-height: 1.4;
    color: white;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .thematic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .thematic-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}