:root {
            --primary: #0a192f;
            --accent: #64ffda;
            --text: #ccd6f6;
            --bg: #020c1b;
        } 

body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg);
            color: var(--text);
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            text-align: center;
        } 

.container {
            max-width: 800px;
            padding: 40px;
            border-style: ridge;
            border-radius: 5 px;
        }

.info-section {
            margin: 40px 0;
            line-height: 1.6;
            text-align: left;
        }

.info-section h2 {
            color: var(--accent);
            font-size: 1.4rem;
            border-bottom: 1px solid var(--accent);
            display: inline-block;
            padding-bottom: 5px;
        }