.legal-content-section {
        background: #fff;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 79, 176, 0.05);
        max-width: 850px;
        margin: 40px auto;
        border: 1px solid rgba(0, 79, 176, 0.05);
        line-height: 1.7;
    }

    .legal-content-section h2 {
        color: var(--primary-blue);
        font-size: 22px;
        font-weight: 800;
        margin-top: 30px;
        margin-bottom: 15px;
        border-bottom: 2px solid rgba(241, 0, 117, 0.1);
        padding-bottom: 8px;
    }

    .legal-content-section p {
        color: var(--text-light);
        font-size: 15px;
        margin-bottom: 20px;
    }

    .legal-content-section ul {
        margin-left: 20px;
        margin-bottom: 20px;
        color: var(--text-light);
        font-size: 15px;
        list-style-type: disc;
    }

    .legal-content-section li {
        margin-bottom: 8px;
    }

    .last-update {
        font-style: italic;
        color: #9ca3af;
        font-size: 13px;
        margin-bottom: 30px;
    }

    @media (max-width: 768px) {
        .legal-content-section {
            padding: 24px;
            margin: 20px 15px;
        }
    }
