/* General resets */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #111827;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background: linear-gradient(90deg, #0a1119, #132233);
    color: rgb(35, 19, 48);
    padding: 1rem 2rem;
}

header h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

header nav a {
    color: rgb(21, 21, 21);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: opacity 0.2s;
}

header nav a:hover {
    opacity: 0.8;
}

/* Main container */
main {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* Section headers */
main h2 {
    font-size: 1.6rem;
    color: #222;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.4rem;
    margin-bottom: 1rem;
}

main h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    color: #444;
}

/* Lists */
ul,
ol {
    margin: 0.5rem 0 1rem 1.5rem;
}

li {
    margin-bottom: 0.6rem;
}

/* Code blocks */
code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
}

pre {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
}

/* Footer */
footer {
    background: #f1f1f1;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

footer nav a {
    color: #007AFF;
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: 500;
}

footer nav a:hover {
    text-decoration: underline;
}

/* FAQ styles */
#faq dt {
    font-weight: bold;
    margin-top: 1rem;
}

#faq dd {
    margin-left: 1rem;
    margin-bottom: 1rem;
}

/* Support contact */
#contact-support a {
    color: #007AFF;
    text-decoration: none;
}

#contact-support a:hover {
    text-decoration: underline;
}

/* Button style (if you add any in the page) */
button,
.btn {
    background: #007AFF;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s ease;
}

button:hover,
.btn:hover {
    background: #005FCC;
}