#LegalPages{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-block: 50px 76px;
    gap: 50px;
}

.legalnotice{
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 30px;
    padding: 0;
}
#AboutUs{
    display: flex;
}
.Legalpagetitle{
    width: 100%;
    font-size: 2rem;
    line-height: 2rem;
    color: var(--Text-Primary);
    font-weight: 600;
    padding-bottom: 20px;
}
.noticecontent{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.noticesectiontitle{
    width: 100%;
    font-size: 1.3rem;
    line-height: 1.3rem;
    color: var(--primary);
    font-weight: 600;
}
.noticesectiontext{
    width: 100%;
    font-size: 1.3rem;
    color: var(--Text-Secondary);
    font-weight: 400;
    text-align: justify;
}

.developers{
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background-color: var(--Surface);
    border: 1px solid var(--Border);
    border-radius: 16px;
    overflow: hidden;
}
.mindBehindCalculateonWeb{
    width: 100%;
    padding: 20px;
    font-size: 1.3rem;
    color: var(--Text-Primary);
    font-weight: 400;
    text-align: justify;
    overflow: hidden;
}
.threefriends{
    width: 100%;
    display: flex;
    background-color: var(--Border);
    border-radius: 16px;
    padding: 20px;
    gap: 20px;
    overflow: hidden;
}
.membercard{
    scroll-margin-top: 100px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.memberimage{
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    height: fit-content;
    overflow: hidden;
}
.memberimage img{
    width: 100%;
}
.memberDetails{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 6px;
}
.NameofMember{
    width: 100%;
    font-size: 0.8rem;
    line-height: 0.8rem;
    color: var(--Text-Primary);
    font-weight: 600;
}
.PositionofMember, .RoleofMember{
    width: 100%;
    font-size: 0.8rem;
    line-height: 0.8rem;
    color: var(--Text-Secondary);
    font-weight: 400;
}
.LinkedIn{
    font-size: 0.8rem;
    line-height: 0.8rem;
    color: var(--Text-Primary);
    font-weight: 600;
    margin-top: 20px;
}
.LinkedIn:hover{
    text-decoration: underline;
}

@media (max-width: 800px) {
    .noticesectiontext{
        font-size: 1rem;
    }
}
@media (max-width: 700px) {
    .threefriends{
        flex-direction: column;
        align-self: stretch;
    }
    .membercard{
        display: flex;
        flex-direction: row;
        gap: 10px;
    }
    .memberimage{
        flex: 1;
        max-width: 200px;
    }
    .memberDetails{
        flex: 1;
    }
    .mindBehindCalculateonWeb{
        font-size: 1rem;
    }
}