:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #B22222; /* Deep Red */
    --background-dark: #1a1a1a; /* Dark background */
    --background-light: #2c2c2c; /* Slightly lighter dark background */
    --text-light: #ffffff; /* Light text for dark backgrounds */
    --text-dark: #333333; /* Dark text (less used, for light elements) */
    --border-color: #444444; /* Border for elements */
    --accent-color: #ffd700; /* For highlights, same as primary */
}

.page-x-s {
    font-family: 'Arial', sans-serif;
    color: var(--text-light);
    background-color: var(--background-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.page-x-s .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-x-s section {
    padding: 60px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.page-x-s section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.page-x-s h1, .page-x-s h2, .page-x-s h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-x-s h1 {
    font-size: 2.8em;
    color: var(--text-light); /* H1 in hero section might be on image */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-x-s h2 {
    font-size: 2.2em;
    color: var(--primary-color);
}

.page-x-s h3 {
    font-size: 1.8em;
    color: var(--text-light);
    margin-bottom: 15px;
}

.page-x-s p {
    margin-bottom: 1em;
    font-size: 1.1em;
}