.bg {
    background-color: #5D5F71;
}

.list-unstyled {
    list-style: none; /* Remove bullet points */
    margin: 0 auto;   /* Center <ul> horizontally */
    margin-left: 10%;
    display: flex;    /* Use flexbox for alignment */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center <li> horizontally */
    padding: 0;       /* Remove padding from <ul> */
}

.list-unstyled li {
    text-align: left; /* Align text inside <li> to the left */
    width: 100%;      /* Make <li> span the full container width */
    max-width: 400px; /* Limit width for better alignment */
    padding: 0;       /* Remove default padding */
    margin: 0 auto;   /* Center the <li> within the <ul> */
}

.button-link {
    display: inline-block;
    background-color: #5D5F71;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.button-link:hover {
    background-color: #5D5F71; /* Vert plus foncé */
    transform: scale(1.05);
}

.button-link:active {
    background-color: #5D5F71;
    transform: scale(0.98);
}
    