
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: 
                radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(119, 198, 255, 0.3) 0%, transparent 50%),
                linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
            background-attachment: fixed;
            color: #ffffff;
            min-height: 100vh;
            backdrop-filter: blur(10px);
        }

        /* Header */
        header {
            padding: 20px 0;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(45deg, #00d4ff, #0099ff, #0066ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 8px;
        }

        .nav-links a:hover {
            color: #00d4ff;
            background: rgba(0, 212, 255, 0.1);
        }

        .logout-btn {
            background: linear-gradient(45deg, #ff4757, #ff3742);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .logout-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
        }

        /* Main Container */
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 24px;
        }

        /* Page Header */
        .page-header {
            text-align: center;
            margin-bottom: 48px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 12px;
            background: linear-gradient(45deg, #ffffff, #00d4ff, #0099ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
        }

        .page-header .dates {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Content Container */
        .content {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 48px;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            line-height: 1.7;
        }

        .content h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #00d4ff;
            margin: 32px 0 16px 0;
            filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
        }

        .content h2:first-child {
            margin-top: 0;
        }

        .content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
            margin: 24px 0 12px 0;
        }

        .content p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 16px;
        }

        .content ul, .content ol {
            margin: 16px 0;
            padding-left: 24px;
        }

        .content li {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 8px;
        }

        .content strong {
            color: #ffffff;
            font-weight: 600;
        }

        .content em {
            color: #00d4ff;
            font-style: normal;
            font-weight: 500;
        }

        /* Contact Info Styling */
        .contact-info {
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 12px;
            padding: 20px;
            margin: 24px 0;
        }

        .contact-info strong {
            color: #00d4ff;
        }

        /* Email and Phone Links */
        a[href^="mailto:"], a[href^="tel:"] {
            color: #00d4ff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 2px 4px;
            border-radius: 4px;
        }

        a[href^="mailto:"]:hover, a[href^="tel:"]:hover {
            background: rgba(0, 212, 255, 0.1);
            text-decoration: underline;
        }

        /* Table of Contents */
        .toc {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 32px;
        }

        .toc h3 {
            color: #00d4ff;
            margin-bottom: 16px;
            font-size: 1.2rem;
        }

        .toc ul {
            list-style: none;
            padding: 0;
        }

        .toc li {
            margin-bottom: 8px;
        }

        .toc a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 4px 8px;
            border-radius: 4px;
        }

        .toc a:hover {
            color: #00d4ff;
            background: rgba(0, 212, 255, 0.1);
        }

        /* Section Dividers */
        .section-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
            margin: 40px 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .container {
                padding: 24px 16px;
            }

            .page-header {
                padding: 32px 24px;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .content {
                padding: 32px 24px;
            }

            .content h2 {
                font-size: 1.5rem;
            }
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #00d4ff, #0099ff);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
        }
