/* === Bluewater Trading Color Palette === */
:root {
  --bw-bg: #0F141A;            /* deep background */
  --bw-card: #182029;          /* panels/cards */
  --bw-border: #24303A;        /* subtle border */
  --bw-primary: #2EA3F2;       /* main blue accent */
  --bw-primary-light: #6CC6FF; /* hover/light tone */
  --bw-text: #E9EEF2;          /* main text */
  --bw-text-muted: #8FA1B3;    /* secondary text */
  --bw-success: #4CAF50;       /* optional green for positive/success */
}
/* === /Bluewater Trading Palette === */


/* ======================================================================
   Generic Page Container for Info/Legal Pages
   ====================================================================== */
.page-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px 30px 30px 30px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.07);
  color: #333333;
  line-height: 1.7;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.page-container h1, .page-container h2 {
    font-family: Arial, Helvetica, sans-serif;
    border-bottom: 2px solid #eeeeee;
    padding-bottom: 10px;
    margin-top: 1.5em;
    margin-bottom: 1em;
}
.page-container h1:first-child {
    margin-top: 0;
}

.page-container a {
  color: var(--bw-primary);
  text-decoration: none;
}
.page-container a:hover {
  text-decoration: underline;
}

/* ======================================================================
   Site Footer Styles (v2 - Slim, Single-Row Design)
   ====================================================================== */

.site-footer {
  background-color: var(--bw-card);
  color: var(--bw-text-muted);
  padding: 10px 20px; /* Slimmed down padding */
  margin-top: 50px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9em;
  clear: both;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center; /* Center all content */
}

/* Arrange all links in a single, centered row */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0; /* Add some space below the links */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* Allows links to wrap on small screens */
  gap: 10px 25px;  /* Space between links */
}

.footer-links a {
  color: var(--bw-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--bw-primary-light);
  text-decoration: underline;
}

/* The copyright notice */
.footer-copyright p {
  margin: 0;
  font-size: 1em;
  padding-bottom: 10px;
}

