:root {
    --color-primary: #113B7A;
    --color-secondary: #1D5FD1;
    --color-button-gradient-start: #2B73F6;
    --color-button-gradient-end: #1144A6;
    --color-card-bg: #10233F;
    --color-text-main: #F3F8FF;
    --color-text-secondary: #AFC4E8;
    --color-border: #244D84;
    --color-glow: #4FA8FF;
    --color-gold: #F2C14E;
    --color-divider: #1B3357;
    --color-deep-navy: #08162B; /* This is the body background from shared.css */
}

/* Base styles for the page content, considering body background is dark */
.page-ban-ca {
    font-family: 'Arial', sans-serif;
    color: var(--color-text-main); /* Light text for dark body background */
    background-color: var(--color-deep-navy); /* Ensure consistency if section has no specific bg */
    line-height: 1.6;
}

.page-ban-ca__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}