.hero{
    background:linear-gradient(
        135deg,
        #ff9800,
        #ffb84d
    );

    padding-top:110px;
    padding-bottom:110px;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    top:-250px;
    right:-250px;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero h1{
    color:#ffffff;
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero p{
    color:#fff3e4;
    max-width:760px;
    font-size:20px;
}

/* ========================================= */
/* CONTENT */
/* ========================================= */

.main-content{
    padding-top:80px;
    padding-bottom:80px;
}

.terms-wrapper{
    background:#ffffff;
    border-radius:30px;
    padding:60px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.terms-wrapper h2{
    font-size:38px;
    margin-bottom:25px;
    margin-top:50px;
}

.terms-wrapper h3{
    font-size:28px;
    margin-bottom:20px;
    margin-top:40px;
}

.terms-wrapper p{
    font-size:18px;
    color:#444444;
    margin-bottom:22px;
}

.terms-wrapper ul{
    padding-left:22px;
    margin-bottom:30px;
}

.terms-wrapper li{
    margin-bottom:12px;
    color:#444444;
}

/* ========================================= */
/* DISCLAIMER BOX */
/* ========================================= */

.disclaimer-box{
    background:#fff3dd;
    border-left:6px solid #ff9800;
    padding:30px;
    border-radius:20px;
    margin-top:40px;
    margin-bottom:40px;
}