@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

:root {
    --primary: #ffffff;
    --secondary: #155439;
    --orange: #FB7C35;
    --para: #222222;
}

/* Nunito for legal body text */
.licence-desc p,
.licence-desc ul li {
    font-family: 'Nunito', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
}

.section-term {
    background-image: url("../Assets/Images/privacypolicy-bg.jpg");
    width: 100%;
    height: 100%;
    padding: 150px 0 100px 0;
    background-size: 100% 100%;
}

.section-licence {
    padding: 50px 0;
    background: #F5F5F5;
}

.licence-content {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
}

.licence-heading h2 {
    color: var(--secondary);
}

.licence-desc p {
    color: var(--para);
}

.mt-40 {
    margin-top: 40px;
}

@media screen and (max-width:768px) {
    .term-heading h2 {
        font-size: 45px !important;
        line-height: 1.2;
    }

    .term-desc p {
        font-size: 26px !important;
        line-height: 1 !important;
    }

    .licence-desc p {
        font-size: 26px !important;
        line-height: 1 !important;
    }

    .licence-heading h2 {
        font-size: 35px !important;
    }

    .licence-desc ul li {
        font-size: 26px !important;
        line-height: 1 !important;
    }

    .mt-40 {
        margin-top: 20px;
    }
}

@media screen and (max-width:400px) {
    .section-term {
        padding: 100px 0;
    }

    .term-heading h2 {
        font-size: 40px !important;
    }

    .licence-content {
        padding: 15px;
    }
}

@media screen and (max-width: 600px) {
    .licence-content {
        padding: 0px 15px;
    }

    .term-heading h2 {
        font-size: 30px !important;
    }
}