.intro {
    text-align: justify;
    margin: 80px 50px;
    font-style: italic;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 125px;
    border-radius: 8px;
}

h2 {
    color: #003366;
    margin-bottom: 20px;
}

section {
    margin-bottom: 50px;
}

section img {
    width: 50%;
    height: auto;
    display: block;
}

.reglement {
    display: flex;
    gap: 20px;
}

.download-reglement {
    margin-bottom: 100px;
}

.inscription-container button {
    margin: 50px 0;
}

.inscription {
    display: flex;
    gap: 20px;
}

.inscription h3 {
    margin-bottom: 75px;
}

.inscription p {
    margin-bottom: 40px;
}

p.bottom {
    margin-bottom: -5px;
}

.telechargements {
    text-align: center;
    margin: 80px 0;
}

.telechargements h3 {
    margin: 50px 0;
}

.telechargement-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.telechargement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    max-width: 250px;
}

.telechargement-item p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    text-align: center;
}

.telechargement-item .btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #EBD5BD;
    color: #333333;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.telechargement-item .btn:hover {
    background-color: #DAC3AC;
}

.partenaires-section {
    text-align: center;
    margin-bottom: 80px;
}

.partenaires-section h3 {
    margin-bottom: 20px;
}

.partenaires-section a {
    display: inline-block;
    margin: 10px;
}

.partenaires-section img {
    width: 150px;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s;
}

.partenaires-section img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .intro {
        margin: 40px 20px;
    }

    .container {
        padding-top: 100px;
    }

    section img {
        width: 100%;
    }

    .reglement {
        flex-direction: column;
        gap: 10px;
    }

    .reglement img {
        width: 80%;
        margin: 0 auto;
    }

    .download-reglement {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .inscription {
        flex-direction: column;
        gap: 10px;
    }

    .inscription img {
        width: 80%;
        margin: 0 auto;
    }

    .inscription h3 {
        margin-bottom: 40px;
    }

    .inscription p {
        margin-bottom: 20px;
        width: 80%;
        margin: 0 auto;
    }

    .telechargements {
        margin: 40px 0;
    }

    .telechargements h3 {
        margin: 30px 0;
    }

    .telechargement-items {
        gap: 20px;
    }

    .telechargement-item {
        max-width: 100%;
    }

    .partenaires-section {
        margin-bottom: 40px;
    }

    .partenaires-section h3 {
        margin-bottom: 10px;
    }

    .partenaires-section img {
        width: 100px;
    }

    h2, h3 {
        padding-left: 20px;
    }

    .download-reglement button, .inscription-container button {
        width: 80%;
        margin: 20px auto;
        display: block;
    }
}