.terms-full-page {
    background: #f6f6f6;
    padding-top: 60px;
    padding-bottom: 1px;
}
.terms-condition {
    max-width: 1000px;
    margin: 60px auto;
    /* padding: 50px; */
    /* background: #ffffff; */
    /* border-radius: 20px; */
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
    font-family: "Inter", Arial, sans-serif;
    color: #444;
    line-height: 1.8;
    margin-top: 0px;
    margin-bottom: 0px;
}

.terms-condition h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #e9ecef;
    position: relative;
    line-height: 30px;
    font-weight: 300;
    color: #474747;
}

.terms-condition h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f7560f, #ff4e00);
    position: absolute;
    left: 50%;
    bottom: -3px;
    transform: translateX(-50%);
    border-radius: 20px;
}

.terms-condition h3 {
    font-size: 22px;
    font-weight: 300;
    color: #474747;
    margin: 40px 0 20px;
    padding-left: 14px;
    border-left: 4px solid #f7560f;
}

.terms-condition p {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    color: #6e6e6e;
}

.terms-condition ul {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.terms-condition ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
}

.terms-condition ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: #f7560f;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    font-weight: 700;
}

.terms-condition p + ul,
.terms-condition ul + p {
    margin-top: 20px;
}

.terms-condition a {
    color: #c89b3c;
    text-decoration: none;
    font-weight: 600;
}

.terms-condition a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .terms-condition {
        padding: 35px 25px;
        margin: 40px 15px;
    }

    .terms-condition h2 {
        font-size: 32px;
    }

    .terms-condition h3 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .terms-condition {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .terms-condition h2 {
        font-size: 28px;
    }

    .terms-condition h3 {
        font-size: 22px;
    }

    .terms-condition p,
    .terms-condition li {
        font-size: 15px;
    }
}