/* Simplified Bulma CSS */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

.container {
  width: 100%;
  max-width: 1344px;
  margin: 0 auto;
  padding: 0 1rem;
}

.is-max-desktop {
  max-width: 850px;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}

.column {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
}

.is-centered {
  justify-content: center;
}

.has-text-centered {
  text-align: center;
}

.has-text-justified {
  text-align: justify;
}

.title {
  color: #363636;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.125;
}

.title.is-2 {
  font-size: 2.5rem;
}

.title.is-4 {
  font-size: 1.5rem;
}

.subtitle {
  color: #4a4a4a;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
}

.is-size-5 {
  font-size: 0.875rem;
}

.content {
  color: #4a4a4a;
}

.content ul {
  list-style: disc outside;
  margin-top: 1em;
  margin-bottom: 1em;
}

.content li {
  margin-top: 0.25em;
}

.table {
  background-color: white;
  color: #363636;
  margin-bottom: 1.5rem;
}

.table.is-bordered {
  border: 1px solid #dbdbdb;
}

.table.is-striped tbody tr:nth-child(2n) {
  background-color: #fafafa;
}

.table.is-narrow td,
.table.is-narrow th {
  padding: 0.25em 0.5em;
}

.table.is-hoverable tbody tr:hover {
  background-color: #f5f5f5;
}

.table.is-fullwidth {
  width: 100%;
}

.table th {
  color: #363636;
  font-weight: 600;
  text-align: left;
  padding: 0.5em 0.75em;
  vertical-align: top;
}

.table td {
  border: 1px solid #dbdbdb;
  border-width: 0 0 1px;
  color: #363636;
  padding: 0.5em 0.75em;
  vertical-align: top;
}

.button {
  background-color: white;
  border-color: #dbdbdb;
  border-width: 1px;
  color: #363636;
  cursor: pointer;
  justify-content: center;
  padding-bottom: calc(0.375em - 1px);
  padding-left: 0.75em;
  padding-right: 0.75em;
  padding-top: calc(0.375em - 1px);
  text-align: center;
  white-space: nowrap;
  align-items: center;
  display: inline-flex;
  font-size: 1rem;
  height: 2.25em;
  line-height: 1.5;
  position: relative;
  vertical-align: top;
  border-radius: 4px;
  box-shadow: none;
  font-size: 1rem;
  height: 2.25em;
  line-height: 1.5;
  padding-left: 0.75em;
  padding-right: 0.75em;
  white-space: nowrap;
}

.button.is-normal {
  font-size: 1rem;
}

.button.is-rounded {
  border-radius: 290486px;
  padding-left: 1em;
  padding-right: 1em;
}

.button.is-dark {
  background-color: #363636;
  border-color: transparent;
  color: #fff;
}

.button.is-dark:hover {
  background-color: #292929;
}

.icon {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  height: 1.5rem;
  width: 1.5rem;
}

.section {
  padding: 3rem 1.5rem;
}

.footer {
  background-color: white;
  padding: 3rem 1.5rem 6rem;
}

@media screen and (max-width: 768px) {
  .columns {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-top: -0.5rem;
  }
  
  .column {
    padding: 0.5rem;
  }
} 