/* {
    border : red solid 1px;
} */

section {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: left;
    padding: 2rem;
}

h2 {
    padding: 0.5rem;
}

.red {
    color: #a33838;
}

ul {
    margin-left: 1.5rem;
    list-style-type: disc;
}

ol li {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

ul li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-size: 1rem;
}

ol {
    margin-left: 1.5rem;
}

/* Processus Section */
.processus-wrapper, .test-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.processus-wrapper img, .test-wrapper img {
    width: 50%;
    height: auto;
}

.processus-text, .test-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Formulaires Section */
#formulaires a {
    font-size: 1.2rem;
    color: #a33838;
    text-decoration: none;
    margin-left: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    section {
        width: 90%;
    }

    .processus-wrapper, .test-wrapper {
        flex-direction: column;
        height: auto;
    }

    .processus-wrapper img, .test-wrapper img {
        width: 100%;
        margin: 2rem 0;
    }

    .processus-text, .test-text {
        width: 100%;
        text-align: center;
    }

    #formulaires a {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    section {
        width: 95%;
        padding: 1rem;
    }
}