/* Reset some basic elements */
.main-content {
    flex: 1;
    padding: 2rem;
    text-align: center;
}
.main-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.main-content p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}
.stats-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}
.stat-box {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
    width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.stat-box h3 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}
.stat-box p {
    color: #e0e0e0;
    font-size: 1rem;
}
.cta-buttons {
    margin-top: 2rem;
}
.cta-buttons a {
    padding: 0.8rem 1.5rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin: 0 0.5rem;
    transition: background-color 0.3s;
    font-weight: bold;
}
.cta-buttons a:hover {
    background-color: #0056b3;
}

.feature-section {
    background-color: #2a2a2a;
    padding: 3rem 2rem;
    text-align: center;
}
.feature-section h3 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 2rem;
}
.feature-section p {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
}

/* Header */
header {
    background-color: #1e1e1e;
    padding: 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    font-size: 1.5rem;
    color: #007bff;
}

.nav-links a {
    color: #e0e0e0;
    margin-left: 1.5rem;
    text-decoration: none;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #007bff;
}

/* Main content layout */
main {
    padding: 2rem;
}

/* Status and Panel Containers */
.form-container,
.status-container,
.panel-container {
    width: 100%;
    max-width: 800px;
    background-color: #1e1e1e;
    padding: 2rem;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.status-item {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin: 0.5rem 0;
}

.panel-container p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

/* Input and button styling */
input[type="password"],
input[type="email"],
input[type="text"],
input[type="number"] {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #2a2a2a;
    color: #e0e0e0;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus {
    border-color: #007bff;
    outline: none;
}

button {
    padding: 0.8rem;
    border: none;
    background-color: #007bff;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

button:hover {
    background-color: #0056b3;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer 
footer {
    background-color: #1e1e1e;
    color: #b0b0b0;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}
*/

/* FAQ, About, Terms, and Privacy Policy Sections */
.faq-section {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.faq-section h2 {
    color: #007bff;
    margin-bottom: 1rem;
    text-align: center;
}

.faq-item {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
    text-align: center;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #e0e0e0;
    text-align: center;
}