.legal-page {
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
    }

    .legal-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .legal-title {
        font-family: var(--font-mono);
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: 0.05em;
        margin-bottom: 0.75rem;
    }

    .legal-updated {
        font-size: 0.85rem;
        color: #64748b;
        margin-top: 0.5rem;
    }

    .legal-container {
        background: #000000;
        border: 1px solid #222222;
        border-radius: 16px;
        overflow: hidden;
    }

    .legal-section {
        border-bottom: 1px solid #1a1a1a;
        padding: 0;
    }

        .legal-section:last-child {
            border-bottom: none;
        }

    .section-wrapper {
        position: relative;
        list-style: none;
    }



    .section-heading {
        width: 100%;
        padding: 1.5rem 3.5rem 1.5rem 1.75rem;
        background: transparent;
        border: none;
        text-align: left;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 600;
        color: #ffffff;
        line-height: 1.5;
        transition: all 0.2s;
        display: block;
    }

    .section-wrapper:hover .section-heading {
        background: rgba(255, 255, 255, 0.02);
    }

    .section-toggle {
        position: absolute;
        right: 1.75rem;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #666666;
        font-size: 1.2rem;
        transition: all 0.2s;
        pointer-events: none;
    }

    details[open] .section-toggle {
        transform: translateY(-50%) rotate(180deg);
        color: #ffffff;
    }

    .section-body {
        padding: 0 1.75rem 1.75rem 1.75rem;
        color: #cccccc;
        font-size: 0.95rem;
        line-height: 1.7;
        background: rgba(255, 255, 255, 0.01);
    }

        .section-body p {
            margin: 0 0 1rem 0;
        }

            .section-body p:last-child {
                margin-bottom: 0;
            }

    .highlight-box {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid #333333;
        border-radius: 8px;
        padding: 1rem 1.25rem;
        margin: 0.75rem 0;
        font-size: 0.9rem;
    }

    .highlight-box-title {
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .infra-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin: 0.75rem 0;
    }

    .infra-item {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid #222222;
        border-radius: 8px;
        padding: 0.75rem 1rem;
    }

    .infra-label {
        font-size: 0.75rem;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 0.25rem;
    }

    .infra-value {
        font-size: 0.9rem;
        color: #ffffff;
        font-weight: 500;
    }

    .legal-footer {
        margin-top: 3rem;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid #222222;
        border-radius: 12px;
        text-align: center;
    }

    .legal-footer-text {
        font-size: 0.9rem;
        color: #999999;
        line-height: 1.6;
    }

    .legal-footer-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 1.25rem;
    }

    .legal-footer-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.65rem 1.25rem;
        background: transparent;
        border: 2px solid #ffffff;
        border-radius: 8px;
        color: #ffffff;
        font-size: 0.85rem;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: all 0.2s;
    }

        .legal-footer-link:hover {
            background: #ffffff;
            color: #000000;
        }

    @media (max-width: 768px) {
        .legal-title {
            font-size: 2rem;
        }

        .section-heading {
            padding: 1.25rem 3rem 1.25rem 1.25rem;
            font-size: 0.95rem;
        }

        .section-toggle {
            right: 1.25rem;
        }

        .section-body {
            padding: 0 1.25rem 1.5rem 1.25rem;
            font-size: 0.9rem;
        }

        .infra-grid {
            grid-template-columns: 1fr;
        }

        .legal-footer-links {
            flex-direction: column;
        }

        .legal-footer-link {
            width: 100%;
            justify-content: center;
        }
    }
