body {
    background: linear-gradient(to bottom, #F1F6FD, #F3FAFA);
    background-attachment: fixed;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body.app-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#react-page-root {
  flex-grow: 1;
}

.container {
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.bg-dark {
  background-color: #1f2937;
}

.bg-white {
  background-color: white;
}

.bg-dark-blue {
  background-color: #23325C;
}

.text-white {
  color: white;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

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

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

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

.gap-4 {
  gap: 1rem;
}

.text-xl {
  font-size: 2rem;
}

.font-slim {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.text-sm {
  font-size: 0.875rem;
}

.hover-underline:hover {
  text-decoration: underline;
}

.no-underline {
  text-decoration: none;
}

#react-header-root {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accordion {
    border-top: 1px solid #e5e7eb;
  }
  
  .accordion-item + .accordion-item {
    border-top: 1px solid #e5e7eb;
  }
  
  .accordion-header {
    margin: 0;
  }
  
  .accordion-button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .accordion-button:hover {
    background-color: #f9fafb;
  }
  
  .accordion-body {
    padding: 1rem;
    font-size: 0.875rem;
    color: #374151;
  }
  
  .accordion-collapse {
    display: none;
  }
  
  .accordion-collapse.open {
    display: block;
  }

  .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-logo {
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  gap: 1rem;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

#react-header-root {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 40px;
}

.classic-link {
  text-decoration: underline;
  color: inherit;
}

.classic-link:hover {
  color: #23325C;
}

.card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}