    li.nav-item {
        list-style: none;
    }

    :root {
        --grad-start: #a52a2a;
        --grad-mid1: #64311a;
        --grad-mid2: #a52a2a;
        --grad-end: #000000;
        --accent: #6a1424;
        --bg: #fffdfd;
        --surface: #ffffff;
        --surface-2: #f0f2fa;
        --border: #e2e4f0;
        --text-primary: #0d0d1a;
        --text-body: #2e2e42;
        --maroon-grad: linear-gradient(135deg, #a52a2a 0%, #64311a 45%, #a52a2a 75%, #000000 100%);
    }

    .sc-container {
        margin: 40px auto;
        background-color: var(--surface);
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        border: 1px solid var(--border);
    }

    /* Hero Header */
    .sc-header {
        background: var(--maroon-grad);
        padding: 70px 60px;
        color: #ffffff;
        position: relative;
    }

    .sc-header::after {
        content: '\f19d';
        font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome;
        font-weight: 900;
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 180px;
        color: rgba(255, 255, 255, 0.05);
        pointer-events: none;
    }

    .sc-title {
        font-size: 48px;
        margin-bottom: 25px;
        color: #ffffff;
        letter-spacing: 1px;
        position: relative;
        z-index: 1;
    }

    .sc-intro {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
        max-width: 800px;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .sc-disclaimer {
        font-size: 15px;
        background: rgba(0, 0, 0, 0.2);
        padding: 15px 25px;
        border-left: 4px solid #ffffff;
        color: rgba(255, 255, 255, 0.85);
        max-width: 800px;
        border-radius: 0 8px 8px 0;
        position: relative;
        z-index: 1;
    }

    /* Grid Layout */
    .sc-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        padding: 60px;
    }

    .sc-container .section-header {
        font-size: 32px;
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 15px;
        color: var(--text-primary);
    }

    .sc-container .section-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--maroon-grad);
        border-radius: 2px;
    }

    .section-desc {
        font-size: 16px;
        color: var(--text-body);
        margin-bottom: 40px;
        display: block;
    }

    /* Request Procedure - Stepper */
    .stepper-wrap {
        position: relative;
        padding-left: 20px;
    }

    .stepper-wrap::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 10px;
        bottom: 20px;
        width: 2px;
        background: var(--border);
    }

    .step-item {
        position: relative;
        padding-left: 40px;
        margin-bottom: 40px;
    }

    .step-item:last-child {
        margin-bottom: 0;
    }

    .step-indicator {
        position: absolute;
        left: -9px;
        top: 0;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--surface);
        border: 4px solid var(--accent);
        box-shadow: 0 0 0 4px var(--surface);
        z-index: 2;
    }

    .step-content {
        background: var(--surface);
        border: 1px solid var(--border);
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
        transition: all 0.3s ease;
        position: relative;
    }

    .step-content::before {
        content: '';
        position: absolute;
        top: 20px;
        left: -8px;
        width: 15px;
        height: 15px;
        background: var(--surface);
        border-left: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        transform: rotate(45deg);
    }

    .step-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        border-color: var(--accent);
    }

    .step-title {
        font-size: 18px;
        font-weight: 600;
        color: var(--accent);
        margin-bottom: 8px;
    }

    .step-desc {
        font-size: 15px;
        color: var(--text-body);
        margin-bottom: 0;
    }

    /* Important Information - Cards */
    .info-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 54px;
        /* Align with steps */
    }

    .info-card {
        display: flex;
        background: var(--surface-2);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .info-card:hover {
        transform: translateX(5px);
        background: var(--surface);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

    .info-icon-wrap {
        background: var(--maroon-grad);
        width: 70px;
        min-width: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 24px;
    }

    .info-text-wrap {
        padding: 20px 25px;
        flex: 1;
        border: 1px solid var(--border);
        border-left: none;
        border-radius: 0 12px 12px 0;
    }

    .info-title {
        font-size: 17px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 5px;
    }

    .info-desc {
        font-size: 15px;
        color: var(--text-body);
        margin-bottom: 0;
    }

    /* Additional Notes */
    .sc-footer {
        background: var(--surface-2);
        padding: 40px 60px;
        border-top: 1px solid var(--border);
    }

    .notes-header {
        font-size: 24px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--text-primary);
    }

    .notes-header i {
        color: var(--accent);
    }

    .notes-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 30px;
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }

    .notes-grid li {
        position: relative;
        padding-left: 28px;
        font-size: 15px;
        color: var(--text-body);
    }

    .notes-grid li::before {
        content: '\f00c';
        font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome;
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: var(--accent);
        font-size: 14px;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .sc-content {
            grid-template-columns: 1fr;
            gap: 60px;
            padding: 40px 30px;
        }

        .sc-header {
            padding: 50px 30px;
        }

        .sc-footer {
            padding: 40px 30px;
        }

        .info-list {
            margin-top: 0;
        }
    }

    @media (max-width: 768px) {
        .notes-grid {
            grid-template-columns: 1fr;
        }

        .sc-title {
            font-size: 36px;
        }

        .sc-header::after {
            font-size: 120px;
            right: 20px;
        }
    }

    @media (max-width: 480px) {

        .sc-content,
        .sc-header,
        .sc-footer {
            padding: 30px 20px;
        }

        .step-content {
            padding: 20px 15px;
        }

        .info-card {
            flex-direction: column;
        }

        .info-icon-wrap {
            width: 100%;
            height: 50px;
        }

        .info-text-wrap {
            border-left: 1px solid var(--border);
            border-top: none;
            border-radius: 0 0 12px 12px;
        }
    }
