/* --- Global Styles --- */
:root {
    --primary-color: #1778f2; /* Deep blue for branding */
    --accent-color: #007AFF;   /* A bright blue for links/buttons */
    --text-color: #333333;    /* Dark gray for main text */
    --light-bg: #f8f9fa;      /* Light gray background */
    --border-color: #e0e0e0;  /* Light border color */
    --wrap-width: 900px;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.wrap {
    max-width: var(--wrap-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- Typography --- */
h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
}

li {
    margin-bottom: 10px;
    padding-left: 25px; /* Space for the custom bullet */
    position: relative;
}

/* Custom bullet styling (assuming text or an icon placeholder) */
li::before {
    content: '•'; /* Use a simple bullet point */
    color: var(--primary-color);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}


/* --- Header & Navigation --- */
header {
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
    margin-right: 10px;
}

nav a {
    margin-left: 20px;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-color);
    text-decoration: none;
}


/* --- Main Content (FAQ Section) --- */
.section {
    padding-top: 40px;
    padding-bottom: 40px;
}


/* --- Footer --- */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}