.legal-title-wrapper {
    background-color: white;
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
}

.legal-title {
    font-size: clamp(24px, 5vw, 64px);
    text-align: center;
    padding: 80px 0px 70px 0px;
    text-transform: uppercase;
    color: #1C60DD;
    /* color: #22273D; */
    /* text-shadow: 2px 5px 5px rgba(0, 0, 0, 0.2); */
    margin-top: 0px;
}

.legal-content-wrapper {
    padding: 65px 0px;
}

.legal-panel {
    background-color: white;
    border: 1px solid white;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0px 0px 7px #1c60dd60;
}

.legal-panel:hover {
    transition: 0.5s ease-in-out;
    box-shadow: 0px 0px 7px #1c60dd;
}

.legal-panel-title {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    background-color: white;
    color: #070E22;
    /* border-bottom: 1px solid #ddd; */
}

/* .resources-faq-panel-title:hover {
    background-color: #d2d2d2;
} */

.legal-panel-content-wrapper {
    padding: 0px 15px;
}

.legal-panel-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.legal-panel-content.open {
    border-top: 1px solid rgba(7, 14, 34, 0.15);
    max-height: none;
    padding: 20px;
}

.legal-panel-arrow {
    transition: transform 0.3s ease;
}

.legal-panel-arrow.rotate {
    transform: rotate(180deg);
}

.legal-panel-content-signed-emails {
    font-size: 24px;
    margin-bottom: 20px;
}

.legal-issue-wrapper {
    background-color: white;
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
}

.legal-issue-text-wrapper {
    padding: 80px 0px;
    font-size: 16px;
    line-height: 1.5;
}

@media screen and (max-width: 991.5px) {
    .legal-title {
        padding: 70px 0px 60px 0px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .legal-issue-text-wrapper {
        padding: 60px 15px;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .legal-title {
        padding: 60px 0px 50px 0px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .legal-issue-text-wrapper {
        padding: 60px 15px;
        text-align: center;
    }
    .legal-panel-title-text {
        max-width: 92%;
    }
}

@media screen and (max-width: 477px) {
    .legal-title {
        padding: 50px 0px 40px 0px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .legal-issue-text-wrapper {
        padding: 40px 15px;
        text-align: center;
        font-size: 14px;
    }
    .legal-panel-title-text {
        max-width: 92%;
    }
    .legal-panel-title {
        padding: 15px;
        font-size: 12px;
    }
    .legal-panel-arrow {
        max-width: 12px;
    }
}