* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Arial, sans-serif;
}

/* Corps de page */
body {
    background-color: #f4f4f4;
    text-align: center;
    padding: 0;
}

/* Conteneur principal */
.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Titre principal */
.container h1 {
    font-size: 2rem;
    color: #0044cc;
    margin-bottom: 10px;
}

/* Tableau */
table {
    width: 100%;
    margin-top: 20px;
    border-collapse: separate;
    border-spacing: 20px;
}

th {
    width: 33%;
    text-align: center;
}

th a {
    display: block;
    text-decoration: none;
    color: #222;
    transition: transform 0.2s ease-in-out;
}

th a:hover {
    transform: scale(1.05);
    color: #0044cc;
}

/* Icônes PDF */
.pdf-icon {
    font-size: 3.5em;
    color: #0044cc;
    transition: transform 0.2s ease-in-out;
    margin-bottom: 10px;
}

.pdf-icon:hover {
    transform: scale(1.2);
    color: #0033aa;
}

/* Icônes Reglement */
.fa-book-open {
    font-size: 3.5em;
    color: #0044cc;
    transition: transform 0.2s ease-in-out;
    margin-bottom: 10px;
}

.fa-book-open:hover {
    transform: scale(1.2);
    color: #0033aa;
}

/* Icône FAQ */
.faq-icon {
    font-size: 3.5em;
    color: #0044cc;
    transition: transform 0.2s ease-in-out;
    margin-bottom: 10px;
}

.faq-icon:hover {
    transform: scale(1.2);
    color: #0033aa;
}

th p {
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 10px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    table {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    tr {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    th {
        width: 100%;
    }

    .container h1 {
        font-size: 1.5rem;
    }

    th p {
        font-size: 1rem;
    }

    .pdf-icon, .faq-icon {
        font-size: 2.8em;
    }
}
