.legal-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 40px;
}

.legal-label {
    font-size: 18px;
    font-weight: 500;
    color: #757775;
    margin-bottom: 16px;
}

.legal-header h1 {
    font-size: 46px;
    font-weight: 500;
    color: #151613;
    letter-spacing: -2.8px;
    text-align: left;
    margin-bottom: 0;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.legal-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #151613;
    margin: 0;
}

.legal-content .section-heading {
    font-size: 24px;
    font-weight: 500;
    color: #151613;
    margin: 10px 0 0;
}

.legal-content .terms-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 24px;
}

.legal-content .terms-item {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #151613;
}

.legal-content .terms-item strong {
    font-weight: 500;
}

.legal-content .terms-sublist {
    margin-top: 8px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.legal-content .terms-subitem {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.legal-content a {
    color: #151613;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #757775;
}

.legal-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #EDEEEC;
    display: flex;
    gap: 24px;
}

.legal-footer a {
    color: #5292dc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.legal-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 30px 20px;
    }

    .legal-header h1 {
        font-size: 30px;
        letter-spacing: -1.7px;
    }

    .legal-content p,
    .legal-content .terms-item,
    .legal-content .terms-subitem {
        font-size: 16px;
    }

    .legal-content .section-heading {
        font-size: 20px;
    }
}
