/* Relies on style.css for variables and base styles */

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: var(--bg-base);
    color: var(--text-primary);
    transition: background-color 0.3s, color 0.3s;
}

h1 {
    text-align: center;
    color: var(--accent-primary);
    margin-bottom: 20px;
    font-size: 2em;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: var(--bg-mantle);
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: background-color 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background: var(--bg-surface);
    transition: background-color 0.3s;
}

.faq-item:hover {
    background: var(--bg-surface-hover);
    /* keeping text color same as normal, or maybe highlight? */
}

.faq-item h3 {
    color: var(--accent-primary);
    margin-bottom: 10px;
    font-size: 1.2em;
}

.faq-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1em;
}

.faq-item a {
    color: var(--accent-tertiary);
    text-decoration: none;
    font-weight: 500;
}

.faq-item a:hover {
    text-decoration: underline;
    color: var(--accent-tertiary-hover);
}

.contact-link {
    text-align: center;
    margin-top: 30px;
}

.contact-link a {
    color: var(--accent-tertiary);
    text-decoration: none;
    font-weight: bold;
}

.contact-link a:hover {
    text-decoration: underline;
    color: var(--accent-tertiary-hover);
}

/* Theme toggle is now #themeToggle styled in style.css or here if needed to override */
#themeToggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: background-color 0.3s, box-shadow 0.3s;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

#themeToggle:hover {
    background-color: var(--bg-surface-hover);
    color: var(--text-primary);
}