main .legal-section {
    text-align: center;
    flex-direction: column;
    gap: 40px;
}

main .legal-section h1 {
    text-align: center;
    font-size: clamp(2rem, 3vw, 4rem);
    font-weight: 800;
    color: var(--primary-color);
}

main .legal-section .text-group {
    flex-direction: column;
    gap: 0;
}

main .legal-section .text-group p {
    line-height: 130%;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: var(--text-color);
}

main .legal-section .text-group p .title {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 800;
}

main .legal-section .text-group p a {
    text-decoration: underline;
    color: var(--text-color);
}

main .legal-section .text-group ul { 
    text-align: right;
}

main .legal-section .text-group ul li {
    margin-top: 15px;
    line-height: 130%;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--text-color);
}

main .legal-section .text-group ul li a {
    text-decoration: underline;
    color: var(--text-color);
}

@media (min-width: 768px) {
    main .legal-section {
        text-align: right;
    }
}