/* GLOBAL */
.univers {
    display: flex;
    background: #E7F6FE;
    font-family: Arial, sans-serif;
    color: #1f2f3a;
}

.container {
    margin: 0 auto;
    padding: 20px 20px 0 20px;
    margin-left: 20px;
}

/* HERO */
.hero {
    padding: 0;
}

.hero .container {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

/* COLONNE GAUCHE IMAGE */
.univers__left {
    width: 40%;
}

.univers__left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXTE DROITE */
.hero__right {
    flex: 1;
    padding-top: 10px;
}

.hero__right h1 {
    font-size: 36px;
    color: #2aa7df;
    margin-bottom: 5px;
}

.hero__right h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero__right p {
    font-size: 14px;
    line-height: 1.5;
}

/* INTRO */
.intro p {
    font-size: 16px;
}

/* SOLUTIONS */
.solutions h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.solutions__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* BOUTONS */
.solution {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #86D5F8;
    padding: 10px 15px;
    background: #eaf6fd;
    font-size: 14px;
}

.solution span {
    color: #2aa7df;
    font-weight: bold;
}

/* BLOCS BAS */
.content-blocks {
    margin-top: 30px;
}

.content-blocks .container {
    display: flex;
    gap: 25px;
}

/* BLOC GAUCHE */
.bloc--left {
    flex: 1;
    background: #FFFEFD;
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.bloc--left h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.bloc--left ul {
    margin: 15px 0;
    padding-left: 20px;
}

.bloc--left li {
    margin-bottom: 8px;
    font-size: 14px;
}

.bloc--left .texte-solution {
    font-size: 14px;
}

/* BLOC DROIT */
.bloc--right {
    flex: 1;
    background: #8ecae6;
    padding: 25px;
    border-radius: 4px;

    margin-bottom: 30px;
}

.bloc--right h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.bloc--right ul {
    list-style: none;
    padding: 0;
}

.bloc--right li {
    font-size: 14px;
    margin-bottom: 10px;
}

/* BONUS : petit effet "borne" */
.solution:hover {
    background: #d4effc;
    cursor: pointer;
    transition: 0.2s;
}