@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    cursor: default;
}

body {
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    background-color: #f8f9ff;
    background-image: radial-gradient(rgba(69, 63, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Host Grotesk", sans-serif;
    font-weight: 700 !important;
    color: #010101;
}

a {
    text-decoration: none;
}

.legalPage_Nav{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    background: linear-gradient(0deg, #010101, #040053);
    padding: 20px 30px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    

    .nav_left{
        width: 50%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: start;

        img{
            width: auto;
            height: 44px;
        }
    }

    .nav_right{
        width: 50%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: end;

        a{
            color: #010101;
            background: #fff;
            padding: 12px 24px;
            border-radius: 50px;
        }
    }
}

@media (max-width:768px) {
    .legalPage_Nav{
        width: 100%;
        height: auto;
        padding: 15px 10px;

        .nav_left{
            width: 50%;
            overflow: hidden;

            img{
                width: auto;
                height: 30px;
            }
        }

        .nav_right{
            width: 50%;
            height: auto;
            overflow: hidden;

            a{
                padding: 5px 10px;
                font-size: 14px;
            }
        }
    }
}

.ContentContainer{
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    margin: 60px 0;
    background-color: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    padding: 60px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.02);

    > h2{
        font-size: 3.5rem;
        line-height: 1.1;
        color: #010008;
        margin-bottom: 15px;
    }

    >span{
        color: #555;
        text-transform: capitalize;
        margin-bottom: 40px;
        font-size: 0.9rem;
        background: #f4f6fc;
        padding: 8px 16px;
        border-radius: 50px;
        font-weight: 500;
    }

    .Clauses{
        width: 100%;
        height: auto;
        display: flex;
        align-items: start;
        justify-content: start;
        flex-direction: column;
        margin: 0;
        padding: 30px 0;
        border-bottom: 1px solid #f0f0f0;

        > h3{
            font-size: 1.3rem;
            color: #040053;
            margin-bottom: 15px;
        }

        > p{
            font-size: 1.1rem;
            color: #444;
            line-height: 1.7;
        }
    }
}

.Clauses:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

@media (max-width:768px) {
    .ContentContainer{
        padding: 30px 20px;
        width: 95%;
        margin: 30px 0;

        >h2{
            font-size: 2.2rem;
        }

        > span{
            font-size: 14px;
        }

        .Clauses{

            >h3{
                font-size: 1.1rem;
            }

            p{
                font-size: 14px;
            }
        }
    }
}

/* footer */
.legalPage_Footer{
    width: 100%;
    max-width: 1400px;
    height: auto;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #010008;
    border-radius: 20px;
    margin-bottom: 40px;

    .footer_left{
        width: 50%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: start;

        p{
            color: #888;
            font-size: 0.9rem;
        }
    }

    .footer_Right{
        width: 50%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 10px;

        a{
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            opacity: 0.7;
            transition: 0.3s;
        }
        
        a:hover {
            opacity: 1;
            color: #453fff;
        }
    }
}

@media (max-width:768px){
    .legalPage_Footer{
        flex-wrap: wrap;
        gap: 10px;
        padding: 25px;
        width: 95%;
        margin-bottom: 20px;

        .footer_left, .footer_Right{
            width: 100%;
            text-align: center;
            justify-content: center;
        }
    }
}

/* footer */