/* Style de base pour la page */
main {
    position: relative;
    min-height: 1000px;
    margin-top: 141px;
    color: black;
    font-family: Arial, sans-serif;
}

.container{
    flex-direction: column;
}

h1 {
    position: relative;
    text-align: center;
    font-size: 56px;
    margin-bottom: 40px;
    color: #2C3E50;
}

h1::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: rgb(79, 172, 189);
}

h2 {
    font-size: 28px;
    color: #2C3E50;
    margin-top: 30px;
    margin-bottom: 15px;
}

h3 {
    font-size: 20px;
    color: #2C3E50;
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

.terms {
    display: flex;
    flex-direction: column;
    margin: 0 10%;
}

.term {
    margin-bottom: 30px;
}

main a {
    color: rgb(79, 172, 189);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


@media screen and (max-width: 750px) {
    .terms {
        margin: 0 5%;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }

    ul li {
        font-size: 16px;
    }

    footer p {
        font-size: 14px;
    }
}
