/* Global site styles (EN, CA) */
:root {
    --brand-primary: #1f3a5f;    /* deep steel blue */
    --brand-accent:  #e63946;    /* maple red */
    --accent-hover:  #c72e3a;    /* darker red on hover */
    --bg:            #f5f7fb;    /* soft light background */
    --text:          #1f2937;    /* primary text */
    --muted:         #6b7280;    /* secondary text */
    --card-bg:       #ffffff;    /* cards & forms */
    --footer-bg:     #0b132b;    /* deep navy for footer */
    --shadow-sm:     0 4px 12px rgba(0,0,0,.08);
    --shadow-lg:     0 10px 24px rgba(0,0,0,.18);
  }
  
  body {
    font-family: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 0;
  }
  
  /* Header */
  .header {
    background-color: var(--brand-primary);
    color: #fff;
    padding: 20px 0;
  }
  
  .header h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .5px;
    margin: 0;
  }
  
  .header .nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .header .nav-item {
    display: inline-block;
    margin-left: 20px;
  }
  
  .header .nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    padding: 5px 10px;
    transition: color .2s ease, border-color .2s ease;
  }
  
  .header .nav-link:hover,
  .header .nav-link.active {
    color: var(--brand-accent);
    border-bottom: 2px solid var(--brand-accent);
  }
  
  /* Sections */
  section {
    padding: 60px 0;
  }
  
  .bg-light {
    background-color: #ffffff !important; /* cleaner light surface */
  }
  
  /* Cards */
  .card {
    border: none;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
    border-radius: 10px;
    background: var(--card-bg);
  }
  
  .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
  
  .card-body {
    padding: 20px;
  }
  
  .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand-primary);
  }
  
  .card-text {
    font-size: 1rem;
    color: var(--muted);
  }
  
  /* Forms */
  form {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
  }
  
  form .form-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-primary);
  }
  
  form .form-control {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-bottom: 15px;
    padding: 12px;
    transition: border-color .2s ease, box-shadow .2s ease;
    color: var(--text);
  }
  
  form .form-control:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, .25);
    outline: none;
  }
  
  /* Primary button */
  button[type="submit"] {
    background-color: var(--brand-accent);
    color: #fff;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: background-color .25s ease, transform .06s ease-in-out;
    cursor: pointer;
  }
  
  button[type="submit"]:hover {
    background-color: var(--accent-hover);
  }
  
  button[type="submit"]:active {
    transform: translateY(1px);
  }
  
  /* Footer */
  footer {
    background-color: var(--footer-bg);
    color: #fff;
    padding: 40px 0;
  }
  
  footer .list-unstyled {
    padding-left: 0;
  }
  
  footer .list-unstyled li {
    margin-bottom: 10px;
  }
  
  footer .text-light {
    color: #cfd6e4;
    text-decoration: none;
    font-size: 1rem;
    transition: color .2s ease;
  }
  
  footer .text-light:hover {
    color: var(--brand-accent);
  }
  
  footer .text-center p {
    font-size: 1rem;
    margin-top: 20px;
  }
  
  /* Simple fade-in animation */
  .fadeInUp {
    animation: fadeInUp 1s ease-out forwards;
  }
  
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  /* Focus states */
  button:focus-visible,
  a:focus-visible,
  .input:focus-visible,
  .form-control:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, .35);
    border-color: var(--brand-accent);
  }
  
  /* Mobile adjustments */
  @media (max-width: 767px) {
    .header .nav {
      text-align: center;
      margin-top: 20px;
    }
  
    .header .nav-item {
      display: block;
      margin-left: 0;
      margin-bottom: 10px;
    }
  
    section {
      padding: 30px 0;
    }
  
    .card {
      margin-bottom: 20px;
    }
  }
/* ===== FAQ block styles ===== */
.faq-card {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-sm, 0 4px 12px rgba(0,0,0,.08));
    overflow: hidden;
    background: var(--card-bg, #fff);
  }
  
  .faq-card .card-footer {
    border-top: 1px solid rgba(0,0,0,.06);
    padding: 1rem 1.25rem 1.25rem;
  }
  
  .faq-cta {
    max-width: 420px;
    background-color: var(--brand-accent, #e63946);
    border-color: var(--brand-accent, #e63946);
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
  }
  .faq-cta:hover {
    background-color: var(--accent-hover, #c72e3a);
    border-color: var(--accent-hover, #c72e3a);
  }
  
  /* Bootstrap accordion theming */
  .accordion-button {
    padding: 1.1rem 1.25rem;
    font-weight: 600;
    color: var(--brand-primary, #1f3a5f);
    background-color: #fff;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
  }
  .accordion-button:not(.collapsed) {
    color: var(--brand-primary, #1f3a5f);
    background-color: rgba(31,58,95,.05);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.05);
  }
  .accordion-button:focus {
    border-color: var(--brand-accent, #e63946);
    box-shadow: 0 0 0 3px rgba(230,57,70,.25);
  }
  
  .accordion-item {
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .accordion-item:last-child {
    border-bottom: 0;
  }
  
  .accordion-body {
    color: var(--muted, #6b7280);
    line-height: 1.65;
    padding: 1rem 1.25rem 1.25rem;
  }
  
  /* Mobile tweaks */
  @media (max-width: 576px) {
    .faq-cta { width: 100%; }
    .accordion-button { font-size: 1rem; }
  }
    