/* Legal Hero Section */
    .legal-hero {
        padding: 180px 0 120px;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .legal-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .legal-hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-badge {
        display: inline-block;
        background: rgba(255, 215, 0, 0.15);
        color: var(--primary);
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 32px;
        border: 1px solid rgba(255, 215, 0, 0.3);
    }

    .legal-hero-title {
        font-size: 64px;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 32px;
        color: var(--white);
        letter-spacing: -1px;
    }

    .legal-hero-subtitle {
        font-size: 20px;
        color: var(--gray-300);
        line-height: 1.8;
        margin-bottom: 0;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Content Sections */
    .legal-content-section {
        background: var(--white);
        padding: 80px 0;
    }

    .info-section {
        margin-bottom: 60px;
    }

    .info-section h2 {
        font-size: 36px;
        font-weight: 800;
        color: var(--black);
        margin-bottom: 24px;
    }

    .info-section hr {
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary) 0%, #f4d03f 100%);
        border: none;
        border-radius: 50px;
        margin: 0 0 32px 0;
    }

    .info-section p {
        font-size: 18px;
        color: var(--gray-600);
        line-height: 1.8;
        text-align: justify;
    }

    /* Documents Grid Section */
    .documents-section {
        background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
        padding: 80px 0;
    }

    .documents-section h2 {
        font-size: 42px;
        font-weight: 800;
        color: var(--black);
        margin-bottom: 24px;
        text-align: center;
    }

    .documents-section > hr {
        width: 130px;
        height: 5px;
        background: linear-gradient(90deg, var(--primary) 0%, #f4d03f 100%);
        border: none;
        border-radius: 50px;
        margin: 0 auto 32px;
    }

    .documents-intro {
        text-align: center;
        font-size: 18px;
        color: var(--gray-600);
        line-height: 1.8;
        max-width: 900px;
        margin: 0 auto 60px;
    }

    /* Document Cards */
    .documents-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

    .document-card {
        background: var(--white);
        border: 2px solid var(--gray-200);
        border-radius: 20px;
        padding: 48px 32px;
        text-align: center;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        min-height: 300px;
    }

    .document-card:hover {
        border-color: var(--primary);
        box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
        transform: translateY(-8px);
    }

    .document-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
        transition: transform 0.3s ease;
    }

    .document-card:hover .document-icon {
        transform: scale(1.1);
    }

    .document-title {
        font-size: 20px;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 24px;
        line-height: 1.4;
        flex-grow: 1;
        display: flex;
        align-items: center;
    }

    .document-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--black);
        color: var(--white);
        padding: 14px 32px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid var(--black);
    }

    .document-btn:hover {
        background: var(--primary);
        color: var(--black);
        border-color: var(--primary);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    }

    .document-btn svg {
        width: 18px;
        height: 18px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .legal-hero {
            padding: 140px 0 80px;
        }

        .legal-hero-title {
            font-size: 36px;
        }

        .legal-hero-subtitle {
            font-size: 17px;
        }

        .legal-content-section,
        .documents-section {
            padding: 60px 0;
        }

        .info-section h2 {
            font-size: 28px;
        }

        .info-section p {
            font-size: 16px;
        }

        .documents-section h2 {
            font-size: 32px;
        }

        .documents-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .document-card {
            padding: 40px 24px;
            min-height: 280px;
        }
    }

    @media (max-width: 480px) {
        .legal-hero-title {
            font-size: 28px;
        }

        .info-section h2 {
            font-size: 24px;
        }

        .documents-section h2 {
            font-size: 28px;
        }
    }
