/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Midnight theme-inspired styling */
body {
    background-color: #1a1a1a; /* Dark background */
    color: #e0e0e0; /* Light text */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #444;
}

h1 {
    font-size: 2.5em;
    color: #00b7c3; /* Cyan accent for headings */
}

/* Section styling */
section {
    margin: 30px 0;
}

h2 {
    font-size: 1.8em;
    color: #00b7c3;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Definition list (FAQ) */
dl {
    margin-left: 20px;
}

dt {
    font-weight: bold;
    color: #ffffff;
    margin-top: 15px;
}

dd {
    margin-left: 20px;
    margin-bottom: 15px;
}

/* Ordered and unordered lists */
ol, ul {
    margin-left: 40px;
}

li {
    margin-bottom: 10px;
}

/* Links */
a {
    color: #00b7c3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Paragraphs */
p {
    margin-bottom: 10px;
}
