body {
  color: var(--primary-color-darker);
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.6rem;

  margin: 0;
  padding: 0;
  box-sizing: border-box;
  justify-content: center;
}

header {
  background: #f8f9fa;
  z-index: 1001;
  font-size: 0.8rem;
  border-bottom: 1px solid #e9ecef;
}

textarea {
  resize: vertical;
  max-height: 500px;
  min-height: 120px;
}

section {
  position: relative;
  padding-bottom: 50px;
  padding-top: 50px;
}

a {
  text-decoration: none !important;
  color: var(--primary-color-darker) !important;
}

a.lighter {
  color: var(--primary-color-lighter) !important;
}

a.lighter:hover {
  color: var(--background-grey-2) !important;
}

ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

li {
  padding: 5px 0;
  margin-left: 2.5rem;
}

li::before {
  content: " ";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-left: -2.5rem;
  margin-bottom: -0.1rem;
  margin-right: 1rem;
  background-image: url(../images/logo_i.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; /* Ensures the image scales correctly within the element */
}

hr {
  border: 0;
  height: 1px;
  background: #333;
  background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

.image-container {
  overflow: hidden;
  display: inline-block;
  position: relative;
}

.image-fluid {
  width: 100%;
  height: auto;
}

.box-shadow {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.decorator {
  width: 145px;
  height: 6px;
  background: var(--primary-color-2);
}

.decorator-alt {
  background: var(--primary-color);
}

.decorator-red {
  background: var(--secondary-color);
}

.inner-bottom-shadow {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}

.inner-top-shadow {
  position: absolute;
  top: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}

.outer-shadow {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

footer {
  background: var(--primary-color-darker);
  padding: 20px 0;
  line-height: 1.2rem;
  font-size: 0.8rem;
}

.footer-logo img {
  width: 100px;
  height: 100px;
}
