
main section{
    position: relative;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
main section img{
    position: absolute;
    height: 300px;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    top: 0;
    left: 0;
}
.help{
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.help h1{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.help p{
    line-height: 1.5rem;
    font-weight: 700;
    width: 55%;
}
main section article{
    width: 80%;
    display: flex;
    justify-content: center;
    color: #272f42;
    margin-bottom: 50px;
    border-radius: 10px;
    overflow: hidden;
}
main section article *{
    background: #f2f3f6;
}
main section .contact{
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}
.contact h2{
    margin-bottom: 30px;
    font-size: 30px;
    color: var(--brand-color);
}
.contact a{
    color: #272f42;
    transition: 0.3s;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.contact a:hover{
    color: var(--brand-color);
    text-decoration: underline;
}
ul{
    list-style: none;
}

@media screen and (max-width: 1090px){
    main{
        margin-top: 90px;
    }
    main section{
        text-align: left;
    }
    .help{
        padding: 30px;
    }
    .help p{
        font-size: 15px;
        font-weight: 400;
        width: 100%;
    }
    .help h1{
        font-size: 30px;
    }
    main section article{
        flex-direction: column;
        width: 95%;
    }
    main section article *{
        width: 99%;
        border-radius: 10px 10px 0 0 ;
    }
    main section .contact{
        border-radius: 0 0 10px 10px ;
    }    
    .contact a{
        display: block;
    }
    .contact a i{
        display: inline;
    }
}