.terms-hero{
    background:linear-gradient(135deg,#538167,#2f5f45);
    padding:110px 0;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.terms-hero::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
    top:-180px;
    left:-150px;
}

.terms-hero::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-150px;
    right:-120px;
}

.terms-hero .container{
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 22px;
    border-radius:50px;
    font-size:15px;
    margin-bottom:25px;
}

.hero-badge i{
    margin-right:8px;
}

.terms-hero h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

.terms-hero p{
    font-size:18px;
    color:#f5f5f5;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.hero-links{
    margin-top:35px;
}

.hero-links a{
    color:#FDCF09;
    text-decoration:none;
    font-weight:600;
}

.hero-links span{
    margin:0 10px;
}

.hero-links strong{
    color:#fff;
}

@media(max-width:768px){

.terms-hero{
    padding:80px 0;
}

.terms-hero h1{
    font-size:36px;
}

.terms-hero p{
    font-size:16px;
}

}

.info-card{

    background:#fff;
    border-radius:15px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
    height:100%;

}

.info-card:hover{

    transform:translateY(-8px);

}

.info-card i{

    width:70px;
    height:70px;
    background:#eef8f1;
    color:#538167;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:auto;
    margin-bottom:20px;

}

.info-card h5{

    font-weight:700;
    margin-bottom:10px;

}

.info-card p{

    color:#777;
    margin:0;

}

.terms-content{
    background:#f8f9fa;
}

.terms-sidebar{
    position:sticky;
    top:100px;
    background:#538167;
    color:#fff;
    padding:40px;
    border-radius:20px;
}

.section-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:20px;
}

.terms-sidebar h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
}

.terms-sidebar p{
    line-height:1.8;
    color:#f3f3f3;
}

.terms-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    border:1px solid #eee;
}

.card-title{
    display:flex;
    align-items:center;
    margin-bottom:25px;
}

.card-title .icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#eef8f1;
    color:#538167;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-right:20px;
}

.card-title h4{
    margin:0;
    font-weight:700;
}

.terms-card ul{
    margin:0;
    padding-left:20px;
}

.terms-card li{
    margin-bottom:15px;
    line-height:1.8;
    color:#555;
}

.service-item{
    background:#f8f9fa;
    padding:15px;
    border-radius:10px;
    margin-bottom:15px;
    border:1px solid #e9ecef;
    font-weight:600;
    transition:.3s;
}

.service-item:hover{
    background:#538167;
    color:#fff;
    transform:translateY(-3px);
}

.service-item i{
    color:#538167;
    margin-right:10px;
}

.service-item:hover i{
    color:#fff;
}

.alert-success{
    background:#eef8f1;
    border:none;
    color:#2f5f45;
    border-left:5px solid #538167;
}