        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
            font-family: Arial, sans-serif;
            background: #fff;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* --- Base Container & Core Typography --- */
        .app-container {
            width: min(1400px, 100%);
            margin: 0 auto;
            padding: clamp(16px, 3vw, 40px);
        }

        /* --- Header Section --- */
        .app-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .app-subtitle {
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #d97706;
        }

        .app-title {
            margin-top: 0.75rem;
            font-size: 2.25rem;
            font-weight: 700;
            text-transform: uppercase;
            color: #0f172a;
        }

        /* --- Warning Banner --- */
        .warning-banner {
            margin-left: auto;
            margin-right: auto;
            margin-top: 1.5rem;
            display: flex;
            max-width: 48rem;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            border-radius: 0.5rem;
            border: 1px solid #fcd34d;
            background-color: #fef3c7;
            padding: 0.75rem 1rem;
            text-align: center;
        }

        .warning-icon {
            height: 1.25rem;
            width: 1.25rem;
            flex-shrink: 0;
            color: #d97706;
        }

        .warning-text {
            font-size: 0.875rem;
            font-weight: 500;
            color: #92400e;
            margin: 0;
        }

        .bold-text {
            font-weight: 700;
        }

        /* --- Content Stack & Categories --- */
        .categories-stack {
            max-width: 80rem;
            margin-left: auto;
            margin-right: auto;
        }

        .categories-stack>*+* {
            margin-top: 1.25rem;
        }

        .category-title {
            text-transform: uppercase;
            font-size: 1.5rem;
            padding-top: 1.25rem;
            padding-bottom: 1.25rem;
            font-weight: 600;
            letter-spacing: -0.025em;
            color: #0f172a;
            margin: 0;
            text-align: center;
            /* Optional: Centers the category title too */
        }

        /* --- Responsive Flex Layout (Centers Cards) --- */
        .apps-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

        /* --- Application Cards --- */
        .app-card {
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 240px;
            /* Prevents cards from stretching too wide */
            border-radius: 1rem;
            border: 1px solid #e2e8f0;
            background-color: #ffffff;
            padding: 1.25rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .icon-wrapper {
            margin-bottom: 1rem;
            display: flex;
            justify-content: center;
        }

        .icon-box {
            display: flex;
            height: 3.5rem;
            width: 3.5rem;
            align-items: center;
            justify-content: center;
            border-radius: 0.75rem;
            transition: all 0.3s ease;
        }

        .card-body {
            display: flex;
            flex: 1 1 0%;
            flex-direction: column;
            text-align: center;
        }

        .card-title {
            margin-top: 0;
            margin-bottom: 1rem;
            font-size: 1rem;
            font-weight: 600;
            color: #0f172a;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-footer {
            margin-top: auto;
        }

        /* --- Interactive Action Buttons --- */
        .download-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: #334155;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: color 0.2s ease;
            padding: 0;
            text-decoration: none;
        }

        .download-btn:hover {
            color: #0f172a;
        }

        .arrow-icon {
            height: 1rem;
            width: 1rem;
            transition: transform 0.3s ease;
        }

        .app-card:hover .arrow-icon {
            transform: translateX(0.25rem);
        }

        /* --- Support Center Section Styles --- */
        .support-section {
            background-color: #0b132b;
            /* Deep Dark Blue Background */
            padding: 3.5rem 2rem;

            margin-top: 2.5rem;
        }

        .support-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .support-subtitle {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #f59e0b;
            /* Soft blue text header accent */
            margin-bottom: 0.5rem;
        }

        .support-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
        }

        .support-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

        .support-card {
            background-color: #111a36;
            /* Slightly lighter container dark-blue */
            border: 1px solid #1e294b;
            border-radius: 0.75rem;
            padding: 2.5rem 1.5rem;
            width: 80%;
            max-width: 260px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        /* Gold active/highlight border match for WhatsApp option */
        .support-card.highlighted {
            border: 2px solid #f59e0b;
        }

        .support-icon {
            color: #f59e0b;
            /* Yellow/Gold Icon Accent */
            margin-bottom: 1.5rem;
        }

        .support-card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #ffffff;
            margin-top: 0;
            margin-bottom: 1rem;
        }

        .support-card-text {
            font-size: 0.875rem;
            color: #94a3b8;
            /* Muted grey text */
            line-height: 1.5;
            margin-top: 0;
            margin-bottom: 2rem;
            flex-grow: 1;
            /* Aligns links evenly */
        }

        .support-link {
            font-size: 0.9rem;
            font-weight: 600;
            color: #f59e0b;
            /* Golden Yellow interactive links */
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .support-link:hover {
            color: #fbbf24;
            text-decoration: underline;
        }


        /* --- Portal Banner Container --- */
        /* --- Portal Banner Container --- */
        .portal-banner {
            width: 100%;
            background-color: #0d1b2a;

            /* Soft, bright tint layer to illuminate the background graphic */
            background-image: linear-gradient(rgba(255, 255, 255, 0.15), rgba(15, 32, 67, 0.4)),
                url('./Images/background.png');

            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 2.5rem 1.5rem;
            box-sizing: border-box;
        }

        /* --- Layout Alignment Wrapper --- */
        .banner-content-wrapper {
            max-width: 100rem;

            display: flex;
            align-items: center;
            position: relative;
            min-height: 80px;
        }

        /* --- Logo Styling --- */
        .logo-container {
            display: inline-flex;
            align-items: center;
            position: absolute;
            left: 0;
        }

        .portal-logo {
            height: 2.2rem;
            /* Adjusted for better visibility */
            width: auto;
            object-fit: contain;
        }

        /* --- Core Center Typography --- */
        .banner-center-text {
            flex: 1;
            text-align: center;
            padding: 0 10rem;
            /* Prevents text colliding with the absolute positioned logo */
        }

        .portal-main-title {
            margin: 0 0 0.35rem 0;
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: 0.03em;
            color: #ffffff;
            text-transform: uppercase;
        }

        .portal-tagline {
            margin: 0;
            font-size: 0.95rem;
            font-weight: 400;
            color: #e2e8f0;
            letter-spacing: 0.01em;
        }

        /* --- Mobile Breakpoint --- */
        @media (max-width: 768px) {
            .banner-content-wrapper {
                flex-direction: column;
                gap: 1.25rem;
            }

            .logo-container {
                position: static;
            }

            .banner-center-text {
                padding: 0;
            }

            .portal-main-title {
                font-size: 1.85rem;
            }
        }



        /* --- Documents Section --- */
        .docs-section {
            padding-top: 3.5rem;
            padding-bottom: 4rem;
            background-color: #ffffff;
            font-family: sans-serif;
        }

        .docs-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .docs-subtitle {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #f59e0b;
            /* Golden Yellow header context text */
            margin-bottom: 0.5rem;
        }

        .docs-title {
            font-size: 2.25rem;
            font-weight: 800;
            color: #0f172a;
            /* Deep Slate text */
            text-transform: uppercase;
            margin: 0;
        }

        /* --- Rounded Main Box Wrapper --- */
        .docs-list-container {
            max-width: 58rem;
            /* Matches card proportions seen in layout */
            margin-left: auto;
            margin-right: auto;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            overflow: hidden;
            /* Keeps internal corner borders clean */
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
        }

        /* --- Row Alignments --- */
        .docs-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            background-color: #ffffff;
            text-decoration: none;
            transition: background-color 0.15s ease;
        }

        /* Row separation borders */
        .docs-row:not(:last-child) {
            border-bottom: 1px solid #edf2f7;
        }

        /* Soft gray highlight on row hover */
        .docs-row:hover {
            background-color: #f8fafc;
        }

        .docs-row-left {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Document Icon Styling */
        .doc-icon {
            width: 1.25rem;
            height: 1.25rem;
            color: #64748b;
            /* Slate Gray graphic tint */
        }

        /* Document Text Label Styling */
        .doc-label {
            font-size: 1rem;
            font-weight: 600;
            color: #1e293b;
        }

        /* Right Aligned Chevrons */
        .chevron-icon {
            width: 1rem;
            height: 1rem;
            color: #94a3b8;
            transition: transform 0.2s ease, color 0.2s ease;
        }

        .docs-row:hover .chevron-icon {
            color: #64748b;
            transform: translateX(2px);
        }

        /* --- Global Footer Styles --- */
        .portal-footer {
            background-color: #0b132b;
            /* Matching image deep dark navy background */
            padding: 3rem 1.5rem 2rem 1.5rem;
            width: 100%;
            box-sizing: border-box;
            font-family: sans-serif;
        }

        .footer-container {
            max-width: 80rem;
            margin-left: auto;
            margin-right: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        /* --- Branding Element Stack --- */
        .footer-branding {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .footer-logo {
            height: 1.5rem;
            /* Balanced size matching the sample layout */
            width: auto;
            object-fit: contain;
        }

        .footer-app-name {
            margin: 0;
            font-size: 1.15rem;
            color: #475569;
            /* Soft steel blue text hue */
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        /* --- Clean Dark Rule Divider --- */
        .footer-divider {
            width: 100%;
            max-width: 75rem;
            border: 0;
            border-top: 1px solid #111c35;
            /* Faintly visible dark line styling */
            margin: 0 0 1.5rem 0;
        }

        /* --- Copyright Footnotes --- */
        .footer-copyright p {
            margin: 0;
            font-size: 0.875rem;
            color: #334155;
            /* Low-contrast dark grey for a professional subtext finish */
            letter-spacing: 0.01em;
        }
    