@charset "UTF-8";
/* -----------------------------------
   CSS Reset – Modern Version
----------------------------------- */
/* Use a more intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margins */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements */
ul[role=list],
ol[role=list],
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Remove built-in form typography styles */
input,
button,
textarea,
select {
  font: inherit;
}

/* Prevent text overflows */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  overflow-wrap: break-word;
}

/* Inherit box-sizing on pseudo elements */
::before,
::after {
  box-sizing: inherit;
}

/* Remove animations & transitions for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #212529;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: spacer(1);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: spacer(2);
  font-size: 1rem;
  line-height: 1.6;
}

a {
  color: theme-color("primary");
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: theme-color("primary-dark");
  text-decoration: underline;
}

small {
  font-size: 0.875rem;
}

blockquote {
  font-style: italic;
  border-left: 4px solid theme-color("primary");
  padding-left: spacer(2);
  margin: spacer(2) 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #212529;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

a {
  color: theme-color("primary");
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: theme-color("primary");
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: spacer(2);
}

ul,
ol {
  margin: 0;
  padding-left: 1.5rem;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  padding: spacer(1);
  border: 1px solid #f0f0f0;
  text-align: left;
}

code,
pre {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background-color: #ffffff;
  padding: spacer(0.5);
  border-radius: 0.2rem;
  font-size: 0.9rem;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.flex {
  display: flex !important;
}

.inline-flex {
  display: inline-flex !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

.justify-evenly {
  justify-content: space-evenly !important;
}

.items-start {
  align-items: flex-start !important;
}

.items-end {
  align-items: flex-end !important;
}

.items-center {
  align-items: center !important;
}

.items-baseline {
  align-items: baseline !important;
}

.items-stretch {
  align-items: stretch !important;
}

.content-start {
  align-content: flex-start !important;
}

.content-end {
  align-content: flex-end !important;
}

.content-center {
  align-content: center !important;
}

.content-between {
  align-content: space-between !important;
}

.content-around {
  align-content: space-around !important;
}

.content-stretch {
  align-content: stretch !important;
}

.self-start {
  align-self: flex-start !important;
}

.self-end {
  align-self: flex-end !important;
}

.self-center {
  align-self: center !important;
}

.self-baseline {
  align-self: baseline !important;
}

.self-stretch {
  align-self: stretch !important;
}

.gap-xs {
  gap: 0.25rem !important;
}

.gap-sm {
  gap: 0.5rem !important;
}

.gap-md {
  gap: 1rem !important;
}

.gap-lg {
  gap: 1.5rem !important;
}

.gap-xl {
  gap: 2rem !important;
}

@media (min-width: 768px) {
  .flex-md {
    display: flex !important;
  }
  .flex-row-md {
    flex-direction: row !important;
  }
  .flex-column-md {
    flex-direction: column !important;
  }
  .justify-center-md {
    justify-content: center !important;
  }
  .items-center-md {
    align-items: center !important;
  }
  .gap-md {
    gap: 1rem !important;
  }
}
.grid {
  display: grid !important;
  gap: 1rem;
}

.grid-center {
  display: grid;
  place-items: center;
}

.grid-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid-gap-0 {
  gap: 0 !important;
}

.grid-gap-xs {
  gap: 0.5rem !important;
}

.grid-gap-sm {
  gap: 1rem !important;
}

.grid-gap-md {
  gap: 2rem !important;
}

.grid-gap-lg {
  gap: 3rem !important;
}

@media (min-width: 768px) {
  .grid-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
.grid-align-start {
  align-items: start !important;
}

.grid-align-center {
  align-items: center !important;
}

.grid-align-end {
  align-items: end !important;
}

.grid-justify-start {
  justify-items: start !important;
}

.grid-justify-center {
  justify-items: center !important;
}

.grid-justify-end {
  justify-items: end !important;
}

.site-header {
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}

body.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}
body.dark-mode a {
  color: rgb(102, 175.8, 255);
}
body.dark-mode a:hover, body.dark-mode a:focus {
  color: rgb(178.5, 215.4, 255);
}
body.dark-mode .card {
  background-color: #1e1e1e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
body.dark-mode .card__header, body.dark-mode .card__body, body.dark-mode .card__footer {
  color: #e0e0e0;
}
body.dark-mode .button {
  background-color: rgb(0, 98.4, 204);
  color: #ffffff;
}
body.dark-mode .button:hover, body.dark-mode .button:focus {
  background-color: rgb(0, 73.8, 153);
  color: #ffffff;
}
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
  background-color: #1c1c1c;
  border-color: #333333;
  color: #e0e0e0;
}
body.dark-mode input:focus,
body.dark-mode textarea:focus,
body.dark-mode select:focus {
  border-color: rgb(102, 175.8, 255);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.4);
  outline: none;
}
body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder,
body.dark-mode select::placeholder {
  color: #999999;
}
body.dark-mode .modal {
  background-color: rgba(0, 0, 0, 0.85);
}
body.dark-mode .modal__content {
  background-color: #1e1e1e;
  color: #e0e0e0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}
body.dark-mode .modal__close {
  color: #999999;
}
body.dark-mode .modal__close:hover, body.dark-mode .modal__close:focus {
  color: rgb(102, 175.8, 255);
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline {
  display: inline !important;
}

.d-none {
  display: none !important;
}

.flex {
  display: flex !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.align-center {
  align-items: center !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-auto {
  overflow: auto !important;
}

.z-top {
  z-index: 9999 !important;
}

.z-middle {
  z-index: 500 !important;
}

.z-back {
  z-index: 0 !important;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media print {
  *,
  *::before,
  *::after {
    box-shadow: none !important;
    text-shadow: none !important;
    color-adjust: exact !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 12pt;
    line-height: 1.4;
    margin: 0.5in;
  }
  a,
  a:visited {
    color: #000;
    text-decoration: underline;
    cursor: text;
  }
  .no-print,
  header,
  footer,
  nav,
  .modal,
  .button,
  .form-error,
  .form-help-text {
    display: none !important;
  }
  img {
    max-width: 100% !important;
    height: auto !important;
  }
  table {
    border: 1px solid #000 !important;
    border-collapse: collapse !important;
  }
  th,
  td {
    border: 1px solid #000 !important;
    padding: 4px 8px !important;
  }
  .page-break {
    page-break-before: always !important;
  }
  .card,
  section {
    page-break-inside: avoid !important;
  }
}
.button {
  background-color: theme-color("primary");
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  padding: spacer(2) spacer(3);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.button:hover {
  opacity: 0.9;
}
.button:hover, .button:focus {
  background-color: theme-color("primary-dark");
  color: #fff;
  outline: none;
}
.button:disabled, .button[disabled] {
  cursor: not-allowed;
  opacity: 0.65;
}

.button-secondary {
  background-color: theme-color("secondary");
  color: theme-color("dark");
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border: 1px solid theme-color("secondary");
}
.button-secondary:hover {
  opacity: 0.9;
}
.button-secondary:hover, .button-secondary:focus {
  background-color: theme-color("secondary-dark");
  color: #fff;
}

.button-outline {
  background-color: transparent;
  color: theme-color("primary");
  border: 2px solid theme-color("primary");
}
.button-outline:hover, .button-outline:focus {
  background-color: theme-color("primary");
  color: #fff;
}

.button-sm {
  font-size: 0.875rem;
  padding: spacer(1) spacer(2);
}

.button-lg {
  font-size: 1.25rem;
  padding: spacer(3) spacer(4);
}

.about {
  margin: 0;
  padding: 0;
}

/*# sourceMappingURL=main.css.map */
