   @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
        body {
            font-family: 'Inter', sans-serif;
            background-color: #0d0d1a;
            color: #f0f0f0;
        }
        .container {
            max-width: 1200px;
            margin: auto;
            padding: 2rem;
        }
        .text-gradient {
            background: linear-gradient(90deg, #6c47ff, #b373e6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }
        .nav-link {
            transition: color 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: #b373e6;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background: #b373e6;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .section-header {
            font-size: 2.5rem;
            font-weight: 700;
            border-bottom: 2px solid #b373e6;
            padding-bottom: 0.5rem;
            margin-bottom: 2rem;
            display: inline-block;
        }