        /* Modern CSS Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Variables */
        :root {
            --primary: #4361ee;
            --primary-dark: #3a56d4;
            --secondary: #3f37c9;
            --accent: #4cc9f0;
            --success: #4ade80;
            --warning: #f59e0b;
            --danger: #ef4444;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1e293b;
            --gray-900: #0f172a;
            
            --border-radius-sm: 0.25rem;
            --border-radius: 0.5rem;
            --border-radius-lg: 1rem;
            
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            --font-mono: 'Fira Code', 'Roboto Mono', monospace;
        }

        /* Base Styles */
        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background: var(--light); /* Light background like your snippet */
            color: var(--gray-800); /* Main text color */
            line-height: 1.7;
            transition: all 0.3s ease;
        }

        /* Layout */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            margin: 2rem 0 1rem;
            font-weight: 700;
            line-height: 1.3;
            color: var(--gray-900);
        }

        h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        h2 {
            font-size: 1.75rem;
            position: relative;
            padding-bottom: 0.75rem;
            margin-top: 3rem;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: var(--border-radius);
        }

        p {
            margin-bottom: 1.5rem;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.2s ease;
        }

        a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        /* Header Section */
        .header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 3rem 0;
            border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            z-index: 0;
        }

        .header::after {
            content: "";
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            z-index: 0;
        }

        .header-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .header h1 {
            color: white;
            margin-bottom: 1rem;
            font-size: 2.75rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .header p {
            max-width: 700px;
            margin: 0 auto 1.5rem;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Header Icon */
        .header-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            animation: float 3s ease-in-out infinite;
            display: inline-block;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        /* Main Content */
        .main-content {
            background: white;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            padding: 3rem;
            margin-bottom: 3rem;
        }

        /* Info Section */
        .info-section {
            margin: 3rem 0;
        }

        .info-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border-top: 5px solid var(--primary);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .info-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }

        .info-item {
            position: relative;
            padding: 1.25rem 1.25rem 1.25rem 3.5rem;
            margin-bottom: 1.5rem;
            background: var(--gray-100);
            border-radius: var(--border-radius);
            transition: all 0.3s ease;
        }

        .info-item:hover {
            background: var(--gray-200);
        }

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

        .info-icon {
            position: absolute;
            top: 1.25rem;
            left: 1.25rem;
            width: 1.5rem;
            height: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.25rem;
        }

        .info-content {
            margin-bottom: 0.5rem;
        }

        .info-label {
            font-weight: 600;
            margin: 0 0 0.5rem;
            font-size: 1.1rem;
        }

        .info-value {
            font-size: 0.95rem;
        }

        /* Alert Boxes */
        .alert {
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin: 2rem 0;
            display: flex;
            align-items: flex-start;
            border-left: 5px solid;
        }

        .alert-info {
            background-color: #e6f7ff;
            border-color: var(--accent);
        }

        .alert-icon {
            margin-right: 1rem;
            font-size: 1.5rem;
        }

        .alert-info .alert-icon {
            color: var(--accent);
        }

        .alert-content {
            flex: 1;
        }

        .alert-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        
        /* Button Styles (Added to match server code) */
        .button {
            display: block;
            width: 200px;
            margin: 20px auto;
            padding: 10px;
            background-color: #ffffff;
            color: #1e40af;
            text-align: center;
            text-decoration: none;
            border-radius: 10px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .button:hover {
            background-color: #f1f5f9;
        }
        .button .icon {
            margin-right: 8px;
        }
       
        /* Footer */
        .footer {
            background: var(--gray-800);
            color: white;
            padding: 2.5rem 0;
            text-align: center;
            margin-top: 3rem;
            border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
        }

        .footer p {
            margin: 0;
            opacity: 0.8;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            html {
                font-size: 15px;
            }
            .main-content {
                padding: 2.5rem;
            }
            h1 {
                font-size: 2.25rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            html {
                font-size: 14px;
            }
            .container {
                padding: 0 1rem;
            }
            .main-content {
                padding: 2rem;
            }
            h1 {
                font-size: 2rem;
            }
            .header {
                padding: 2.5rem 0;
            }
            .info-card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            html {
                font-size: 13px;
            }
            .main-content {
                padding: 1.5rem;
                border-radius: var(--border-radius);
            }
            h1 {
                font-size: 1.75rem;
            }
            .header {
                padding: 2rem 0;
                border-radius: 0 0 var(--border-radius) var(--border-radius);
            }
            .alert {
                padding: 1.25rem;
            }
            .info-item {
                padding: 1rem 1rem 1rem 2.75rem;
                margin-bottom: 1rem;
            }
            .info-icon {
                width: 1.25rem;
                height: 1.25rem;
                font-size: 1rem;
            }
            .button {
                width: 150px;
            }
        }