.legal-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 860px;
}

.legal-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--accent-color);

    &:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    h2 {
        color: var(--secondary-color);
        font-size: 1.4rem;
        font-weight: 600;
    }

    h3 {
        color: var(--secondary-color);
        font-size: 1.1rem;
        font-weight: 500;
        margin-top: 0.5rem;
    }

    p {
        line-height: 1.7;
    }

    ul {
        padding-left: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;

        li {
            list-style-type: disc;
            line-height: 1.6;
        }
    }

    a {
        color: var(--accent-color);
        text-decoration: underline;
    }
}
