/*terms and conditions*/
/* ================================
   TERMS SCREEN
================================ */

.termsScreen{

    padding:16px;

    padding-bottom:100px;

    background:#f5f6f8;

    min-height:100vh;
}

/* TOP */

.termsTop{

    background:#fff;

    border-radius:18px;

    padding:28px 20px;

    text-align:center;

    box-shadow:
    0 4px 14px rgba(0,0,0,.06);

    margin-bottom:18px;
}

.termsTop{
    position: relative;
}

.termsBackBtn{
    position: absolute;
    top: 18px;
    left: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
}

.termsIcon{

    width:74px;
    height:74px;

    margin:auto;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #006FFF,
        #00a2ff
    );

    display:flex;

    align-items:center;
    justify-content:center;

    margin-bottom:16px;
}

.termsIcon i{

    color:#fff;

    font-size:34px;
}

.termsTop h1{

    font-size:28px;

    font-weight:800;

    color:#111;

    margin-bottom:10px;
}

.termsTop p{

    font-size:14px;

    color:#666;

    line-height:1.7;
}

/* CONTENT */

.termsContent{

    display:flex;

    flex-direction:column;

    gap:14px;
}

/* EACH BOX */

.termBox{

    background:#fff;

    border-radius:14px;

    padding:18px;

    box-shadow:
    0 3px 10px rgba(0,0,0,.05);

    border:1px solid #eee;
}

.termBox h3{

    font-size:17px;

    font-weight:800;

    color:#111;

    margin-bottom:10px;

    line-height:1.5;
}

.termBox p{

    font-size:14px;

    color:#555;

    line-height:1.9;
}