/*
 * This stylesheet is specifically for the simple, static-like pages
 * generated by the page.php template (e.g., About Us, Privacy Policy).
 */
:root {
    --primary-color: #4caf50;
    --dark-bg: #1a1a1a;
    --medium-bg: #2b2b2b;
    --light-bg: #3c3c3c;
    --text-color: #e0e0e0;
    --text-muted: #b0b0b0;
    --link-color: #3498db;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
    padding: 20px;
}

.page-container {
    max-width: 800px;
    margin: 40px auto;
    background-color: var(--medium-bg);
    padding: 20px 40px 40px 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

h1 {
    color: var(--primary-color);
    text-align: center;
    border-bottom: 1px solid var(--light-bg);
    padding-bottom: 15px;
    margin-top: 10px;
}

p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.2s;
}

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

ul,
ol {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

hr {
    border: 0;
    border-top: 1px solid var(--light-bg);
    margin: 30px 0;
}

.content {
    margin-top: 30px;
}

a.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
}

a.back-link:hover {
    background-color: #45a049;
    text-decoration: none;
}