.choix-tests {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.choix-tests h1 {
    margin-bottom: 8px;
}

.choix-tests > p {
    color: #555;
    margin-bottom: 32px;
}

.choix-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.choix-card {
    flex: 1 1 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 28px 24px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-decoration: none;
    color: inherit;
}

.choix-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.choix-card h2 {
    color: #d85151;
    margin: 0 0 12px;
    font-size: 1.35rem;
}

.choix-card p {
    color: #444;
    flex: 1;
    margin: 0 0 20px;
    line-height: 1.5;
}

.choix-card .choix-cta {
    display: inline-block;
    background: #d85151;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.choix-card:hover .choix-cta {
    background: #c64646;
}
