.elementor-29259 .elementor-element.elementor-element-ae28ad7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-7e06faa */:root{
    --primary:#710012;
    --text:#242424;
    --white:#ffffff;
    --bg:#fafafa;
    --border:#ececec;
}

.terms-section{
    padding:100px 7%;
    background:var(--bg);
}

.terms-container{
    max-width:1300px;
    margin:auto;
}

.terms-header{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.terms-header span{
    color:var(--primary);
    font-size:.85rem;
    font-weight:700;
    letter-spacing:3px;
}

.terms-header h2{
    color:var(--text);
    font-size:3rem;
    margin:18px 0;
}

.terms-header p{
    color:#666;
    line-height:1.8;
}

.terms-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.terms-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.terms-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:4px;
    background:var(--primary);
    transition:.35s;
}

.terms-card:hover::before{
    width:100%;
}

.terms-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.terms-icon{
    width:65px;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f8eef1;
    border-radius:50%;
    font-size:28px;
    margin-bottom:22px;
    transition:.35s;
}

.terms-card:hover .terms-icon{
    transform:rotate(12deg) scale(1.08);
}

.terms-card h3{
    color:var(--text);
    margin-bottom:15px;
    font-size:1.35rem;
}

.terms-card p{
    color:#666;
    line-height:1.8;
}

.terms-footer{
    margin-top:60px;
    background:var(--primary);
    color:#fff;
    border-radius:20px;
    padding:45px;
    text-align:center;
}

.terms-footer h3{
    font-size:2rem;
        color:#fff;
    margin-bottom:15px;
}

.terms-footer p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    opacity:.95;
}

@media(max-width:992px){

    .terms-grid{
        grid-template-columns:1fr;
    }

    .terms-header h2{
        font-size:2.4rem;
    }

}

@media(max-width:768px){

    .terms-section{
        padding:70px 25px;
    }

    .terms-header h2{
        font-size:2rem;
    }

    .terms-card{
        padding:30px;
    }

    .terms-footer{
        padding:35px 25px;
    }

    .terms-footer h3{
        font-size:1.7rem;
    }

}/* End custom CSS */