:root {
    --bg-color: #0b0e14;
    --text-color: #f8f8f8;
    --dim-text: rgba(248, 248, 248, 0.6);
    --border: rgba(255, 255, 255, 0.05);
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    background: radial-gradient(circle at center, #161b22 0%, #0b0e14 100%);
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
    flex: 1;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 40px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

p,
li {
    color: var(--dim-text);
    font-size: 1rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 40px;
    color: var(--dim-text);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--text-color);
}

.contact-link {
    color: var(--text-color);
}

footer {
    padding: 80px 10% 40px 10%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-color);
    color: rgba(248, 248, 248, 0.4);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: rgba(248, 248, 248, 0.4);
    text-decoration: none;
    margin-left: 30px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.footer-links a:hover {
    color: var(--text-color);
}