/* styles.css */

/*.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}*/

.bigtitle {
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5rem;
    ccolor: rgb(40,55,74);
}

.gridlogo {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.column {
    flex: 1;
    min-width: 250px;
    padding: 10px;
    border-radius: 12px;
/*    box-shadow: 0 3px 8px rgba(0,0,0,0.1); */
/*    border: 1px solid #ddd; */
}

/* Couleurs différentes pour chaque rubrique */
.column:nth-child(1) {
    background: #a6c8ff; /*a6c8ff bleu clair pour Productivité */
    border-color: #a6c8ff;
}
.column:nth-child(2) {
    background: #8bd4a1; /* vert clair pour Sécurité */
    border-color: #8bd4a1;
}
.column:nth-child(3) {
    background: #f5c88a; /* orange clair pour Infrastructure */
    border-color: #f5c88a;
}

.column h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid rgb(40,55,74);
    padding-bottom: 10px;
    color: rgb(40,55,74);
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.logo-item img {
    max-width: 80%;
    max-height: 50px;
    object-fit: contain;
}
