@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
        
        :root {
            --primary-color: #00eaff; /* Cyan */
            --secondary-color: #3b82f6; /* Albastru electric */
            --dark-background: #111827; /* Negru inchis */
            --light-text: #e5e7eb; /* Gri deschis */
            --font-family: 'Roboto', sans-serif;
            --header-height: 80px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--dark-background);
            color: var(--light-text);
            line-height: 1.6;
            padding-top: var(--header-height);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        h2 {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        
        p, ul {
            margin-bottom: 1.5rem;
        }
        
        ul {
            list-style-type: disc;
            padding-left: 2rem;
        }

        li {
            margin-bottom: 0.5rem;
        }

        /* --- Header & Footer --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background-color: rgba(17, 24, 39, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            display: flex;
            align-items: center;
            padding: 0 2rem;
            border-bottom: 1px solid var(--secondary-color);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: 2px;
        }
        
        footer {
            background-color: #000000;
            padding: 2rem 0;
            border-top: 1px solid var(--primary-color);
            margin-top: 4rem;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-links a {
            color: var(--light-text);
            text-decoration: none;
        }
        
        .footer-links {
            list-style: none;
            display: flex;
            gap: 1.5rem;
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
        }

