body {
  background-color: var(--bs-dark-grey);
}

.card {
  background-color: var(--bs-medium-grey);
  color: var(--color-light-grey);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
  color: var(--bs-orange);
}

.section-heading {
  position: relative;
  padding-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 50px;
  background-color: var(--bs-orange);
  border-radius: 2px;
}

.list-item-icon {
  color: var(--bs-orange);
  min-width: 24px;
  text-align: center;
}
a.btn-link {
  color: var(--bs-orange);
  text-decoration: underline;
}

a.btn-link:hover {
  color: var(--bs-dark-orange);
}

@media (max-width: 768px) {
  h1,
  h2,
  p {
    text-align: left !important;
  }
}
