html {
    scroll-behavior: smooth;
}

.concenter {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    padding: 12px;
    display: flex;
}

.legal-wrap {
    flex: 1;
    background-color: #5E174F;
    border-radius: 12px;
    padding: 28px 32px;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.legal-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 2px solid #e040a055;
}

.legal-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-section h2 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    padding-left: 10px;
    border-left: 3px solid #e040a0;
}

.legal-section p {
    font-size: 13px;
    color: #e0b8d8;
    line-height: 1.7;
}

.legal-section p span {
    color: #f0d0ec;
    font-weight: 600;
}

.legal-section a {
    color: #e040a0;
    text-decoration: underline;
    transition: color .2s;
}

.legal-section a:hover {
    color: #f06ac0;
}

.legal-section ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 4px;
}

.legal-section ul li {
    font-size: 13px;
    color: #e0b8d8;
    line-height: 1.6;
    padding: 8px 12px;
    background: #ffffff0d;
    border-radius: 6px;
    border-left: 2px solid #e040a055;
}

.legal-section strong {
    color: #f0d0ec;
    font-weight: 600;
}

@media screen and (max-width: 769px) {
    .legal-wrap {
        padding: 18px 14px;
        gap: 18px;
    }

    .legal-title {
        font-size: 20px;
    }

    .legal-section h2 {
        font-size: 14px;
    }
}