/* ========================================
   Global Reset & Base Styles
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%; /* 16px base */
}

body {
  margin: 0;
  font-family: 'Calibri', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Layout
   ======================================== */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* ========================================
   Typography
   ======================================== */
h1 {
  color: #0563C1;
  font-size: 1.8rem;
  margin: 0 0 1rem;
}

h2 {
  color: #0563C1;
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
}

p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

a {
  color: #0563C1;
  text-decoration: underline;
  transition: color 0.2s ease;
}

a:hover {
  color: #054a94;
}

a:visited {
  color: #954F72;
}

em {
  font-style: italic;
}

/* ========================================
   Header & Logo
   ======================================== */
.site-header,
header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo img {
  display: block;
  margin: 0 auto;
  width: 311px;
  max-width: 100%;
  height: auto;
}

/* ========================================
   Breadcrumbs
   ======================================== */
.breadcrumbs {
  font-size: 0.95rem;
  margin: 1rem 0 1.5rem;
  color: #555;
  text-align: center;
}

.breadcrumbs a {
  color: #0563C1;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs .current {
  font-weight: bold;
  color: #000;
}

.breadcrumbs .separator {
  color: #555;
  margin: 0 0.3rem;
  font-weight: normal;
}

/* ========================================
   Lists (Custom Bullets)
   ======================================== */
ul {
  list-style: none;
  padding-left: 0;
  margin: 1.2rem 0;
}

ul li {
  position: relative;
  margin: 0.75rem 0;
  padding-left: 1.8rem;
}

ul li::before {
  content: "•";
  color: #0563C1;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ========================================
   Footer Navigation
   ======================================== */
.footer-nav {
  border-top: 1px solid #ccc;
  padding-top: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-nav a {
  margin: 0 0.5rem;
  color: #0563C1;
  text-decoration: none;
  white-space: nowrap;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* ========================================
   ISPA Badge (Homepage)
   ======================================== */
.ispa {
  text-align: center;
  margin: 1.5rem 0;
}

.ispa img {
  max-width: 250px;
  height: auto;
}

/* ========================================
   ISPA Text (Membership Statement)
   ======================================== */
.ispa-text {
  margin: 1.5rem 0 1rem;
  padding-left: 36px;
  text-indent: -36px;
  font-weight: 500;
}

/* ========================================
   Footer Note
   ======================================== */
.footer-note {
  margin-top: 1.5rem;
  font-style: italic;
  color: #555;
}

/* ========================================
   Site Footer
   ======================================== */
.site-footer {
  background-color: #f8f8f8;
  border-top: 1px solid #ddd;
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #444;
}

.site-footer .container {
  max-width: 1200px;
  padding: 0 15px;
  text-align: center;
}

/* Footer Nav – Remove slashes, use pipes or spacing */
.footer-nav a {
  margin: 0 0.4rem;
  white-space: nowrap;
}

.footer-nav a::after {
  content: " / ";
  color: #aaa;
  margin-left: 0.8rem;
}

.footer-nav a:last-child::after {
  content: "";
}

/* ISPA in Footer (smaller) */
.ispa-footer {
  margin: 1rem 0;
  font-size: 0.9em;
}

.ispa-footer img {
  height: 50px;
  width: auto;
  vertical-align: middle;
}

.ispa-footer span {
  margin-left: 8px;
  vertical-align: middle;
  font-weight: 500;
}

/* Copyright */
.copyright {
  margin: 10px 0;
  font-size: 0.85rem;
  color: #666;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  h1 {
    font-size: 1.6rem;
  }

  .logo img {
    width: 250px;
  }

  .footer-nav {
    font-size: 0.85rem;
  }

  .footer-nav a {
    display: block;
    margin: 0.5rem 0;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 200px;
  }

  .breadcrumbs {
    font-size: 0.85rem;
  }

  .breadcrumbs .separator { 
    content: ">"; 
  }
}