.terms-header {
    position: relative;
    height: 100vh;
    /* width: 100%; */
    overflow: hidden;
    max-height: 37rem;
    /* max-width: 144rem; */
    margin: 0 auto;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: blur(4px); */
    z-index: 1;
}

/* Overlay with color */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F3F7FD;
    z-index: 0;
    border-radius: 0 0 5rem 5rem;
}

.content {
    position: relative;
    z-index: 3;
    color: #0E1628;
    text-align: center;
    padding: 20px;
    top: 50%;
    transform: translateY(-50%);

    h1 {
        font-size: 5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    p {
        /* max-width: 69.2rem; */
        margin: 0 auto;
        font-weight: 500;
        font-size: 1.8rem;
        color: #0E1628;
        margin-top: 3rem !important;

    }

}

section {
    padding: 8rem 5rem;

}

.terms-body {

    h4 {
        font-weight: 500;
        font-size: 3rem;
        line-height: 4rem;
    }

    p {
        /* font-weight: 500; */
        color: #0E1628B2;
        font-size: 1.8rem;
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        line-height: 3rem;

    }

    .contact {
        display: block;
    }

    a {
        color: #5C81AE;
    }
}

@media (max-width: 768px) {
    .terms-header {
        max-height: 32rem;

    }

    .overlay {
        border-radius: 0rem !important;
    }

    section {
        padding: 4rem 2rem;

    }

    .terms-body {

        h4 {
            font-size: 2.4rem;
        }

        p {
            line-height: 2.4rem;
            font-size: 1.6rem;
        }
    }

}