/* Copyright (c) 2025 Mink Bit LLC. All rights reserved. */

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #080808;
    color: #bdbdbd;
}

.content-wrapper {
    display: flex; 
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    flex: 1;
}

.main-content {
    max-width: 800px;
    width: 100%;
    margin-top: 40px;
    text-align: left;
}

.center-content {
    justify-content: center; /* Center items vertically in container */
}

h1 { font-size: 2.0rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.125rem; }
h1, h2, h3 { 
    color: #ddd;
    font-weight: 600; 
}

p { 
    line-height: 1.5;
    margin-bottom: 1rem;
}

strong {
    color: #ddd;
}

.intro-title
{
    font-size: 1.5rem;     
    color: #ddd;
    font-weight: 600; 
}

a:link {
    color: #1e90ff;
    text-decoration: none; /* No underline */
}

a:visited {
    color: #1e90ff;
}

a:hover {
    color: #FFD700;
    text-decoration: underline;
}

a:active {
    color: #FFF000;
}

li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

ul {
    list-style-type: square;
}

header {
    background-color: #080808;
    color: #ddd;
}

.header-container {
    display: flex;
    justify-content: space-between;
    padding: 15px 5px;
    gap: 5px;
    border-bottom: 1px solid #1e90ff;
}

.header-links a {
    color: #ddd;
    text-decoration: none;
    margin: 0 10px;
}

.header-links a:hover {
    text-decoration: underline;
}

.header-contact {
    color: #ddd;
    margin: 0 10px;
}

footer {
    background-color: #080808;
    color: #ddd;
    text-align: center;
    padding: 5px 0;
    border-top: 1px solid #1e90ff;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.history-blurb {
    margin-top: 20px;
}

.history-blurb img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 30px;
}

/* FAQ-specific styles */
.faq-section {
    max-width: 800px;
    width: 90%;
    margin: 40px auto;
    text-align: left;
}

.faq-section details {
    background-color: #222;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-section summary {
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
    background-color: #333;
    list-style: none; /* Hide triangle indicator */
    display: block;
    position: relative;
}

.faq-section summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.2s ease;
}

.faq-section details[open] summary::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-section details[open] summary {
    border-bottom: 1px solid #444;
}

.faq-section p {
    padding: 20px;
    margin: 0;
    line-height: 1.6;
    color: #ccc;
}

.c { 
    font-size: 0.875rem;
}

.logo
{
    width: 72px;
    height: 72px;
    image-rendering: high-quality;
}
