:root {
            --accent-cyan: #00f2ff;
            --glass-bg: rgba(0, 0, 0, 0.6);
            --glass-border: rgba(255, 255, 255, 0.15);
        }

        body {
            font-family: 'Inter', sans-serif;
            /* Using your requested bg.jpg */
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/bg.jpg');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            color: #ffffff;
            min-height: 100vh;
            padding: 40px 0;
        }

        h1,
        h2,
        h3,
        h4,
        .sora {
            font-family: 'Sora', sans-serif;
        }

        /* LARGE CONTAINER */
        .glass-panel {
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 2.5rem;
            margin-bottom: 35px;
            max-width: 1000px;
            /* Big enough for 2 wide buttons */
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        /* Hero */
        .brand-logo {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(to bottom, #fff, #b3f9ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Notice */
        .notice-box {
            background: rgba(0, 242, 255, 0.05);
            border: 1px solid rgba(0, 242, 255, 0.2);
            padding: 15px 25px;
            border-radius: 50px;
            font-size: 1.5rem;
            margin-top: 20px;
            color: #ffcc00;
            display: inline-block;
        }

        /* Headings */
        .section-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            color: #ffcc00;
        }

        .section-header i {
            font-size: 1.8rem;
        }

        .section-header h4 {
            margin: 0;
            font-size: 1.4rem;
            color: #fff;
            letter-spacing: 0.5px;
        }

        /* 2-COLUMN GRID SYSTEM */
        .link-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            /* Strictly 2 columns */
            gap: 20px;
        }

        /* Big Wide Buttons */
        .btn-portal {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            color: #fff;
            padding: 20px;
            /* Increased padding for bigger feel */
            border-radius: 18px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 1.1rem;
            min-height: 80px;
        }

        .btn-portal:hover {
            background: var(--accent-cyan);
            color: #000;
            transform: scale(1.02);
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
        }

        /* Contact Details */
        .contact-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 10px;
        }

        .contact-link {
            color: #ccc;
            text-decoration: none;
            font-size: 1rem;
            transition: 0.3s;
        }

        .contact-clean {
            background: transparent;
            border: none;
            padding: 2rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-link:hover {
            color: var(--accent-cyan);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .link-grid {
                grid-template-columns: 1fr;
            }

            /* Stack on small mobile */
            .glass-panel {
                padding: 1.5rem;
                width: 92%;
            }

            .brand-logo {
                font-size: 2.2rem;
            }
        }