/* Global Styles */
body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #111;
    color: #ddd;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* Header */
header {
    background: linear-gradient(to right, #222, #111);
    text-align: center;
    padding: 40px 0;
    border-bottom: 3px solid #555;
}

header h1 {
    font-size: 3em;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    color: #fff;
}

/* Sections */
section {
    padding: 30px;
    margin: 40px auto;
    max-width: 900px;
    border-left: 4px solid #666;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
}

section h2 {
    color: #bbb;
    font-size: 2.2em;
    text-transform: uppercase;
    border-bottom: 1px solid #666;
    padding-bottom: 10px;
    font-weight: 300;
}

section p {
    font-size: 1.3em;
    margin: 15px 0;
    font-weight: 200;
}

/* List Styles */
section ul {
    list-style: none;
    padding: 0;
}

section ul li {
    font-size: 1.3em;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-weight: 300;
}

section ul li::before {
    content: '—';
    color: #bbb;
    font-size: 1.8em;
    position: absolute;
    left: 0;
    top: -3px;
}

/* Links */
a {
    color: #888;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #fff;
    text-decoration: none;
}

/* Footer */
footer {
    text-align: center;
    background: #111;
    padding: 20px;
    font-size: 1em;
    border-top: 3px solid #555;
    color: #888;
}
