.main-hero {
    background: linear-gradient(89.53deg, rgba(0, 0, 0, 0.8) 38.02%, rgba(0, 0, 0, 0.3) 60.4%, rgba(0, 0, 0, 0) 71.79%), url("../../assets/Legal-banner.png") center / cover no-repeat;
    height: 100vh;
    padding: 32px 0px;
    display: flex;
    align-items: flex-end;
    position: relative;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
}

.hero-header {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-header>h1 {
    width: 60%;
    font-family: Urbanist, sans-serif;
    font-size: 3.14rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.hero-header>p {
    width: 50%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

@media screen and (max-width:768px) {
    .main-hero {
        background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../assets/Legal-banner.png") center / cover no-repeat;
        padding: 0px;
        align-items: center;
    }

    .hero-header {
        padding: 40px;
    }

    .hero-header>h1 {
        width: 100%;
    }

    .hero-header>p {
        width: 100%;
    }

}

@media screen and (max-width:430px) {
    .main-hero {
        padding: 0px;
    }

    .hero-header {
        padding: 20px;
    }

    .hero-header>h1 {
        font-size: 2.617rem;
    }
}

.main-body {
    padding: 128px 50px;
    width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-body-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.main-body-container>span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.main-body-container-header {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    padding: 16px 0;
}

.main-body-container-text {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.main-body-container-text-list {
    padding-left: 20px;
}

.main-body-container-text-list>li,
.main-body-container-text-list-inner>li {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.main-body-container-text-list-inner {
    padding-left: 20px;
    list-style-type: disc;
}

@media screen and (max-width:1024px) {
    .main-body {
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    .main-body {
        padding: 64px 20px;
    }
}