.content-page {
  min-height: 100vh;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.content-sections {
  width: 100%;
  /* position: relative; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.content-bg {
  height: 60vh;
  filter: brightness(0.8);
  width: 100%;
  object-fit: cover;
  position: relative;
}

.content-header-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -35%);
  gap: 12px;
  text-align: center;
  width: 80%;
}

.content-header-heading {
  font-size: 38px;
  font-family: 'Sen';
  font-weight: 700;
  color: white;
  margin: 0;
}

.content-header-subheading {
  font-size: 20px;
  font-family: 'Inter';
  font-weight: 400;
  color: #eee;
  margin: 0;
}

.content {
  font-family: 'Inter';
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(800px, 75%);
  font-weight: 300;
  line-height: 150%;
  gap: 48px;
}

.content-text {
  font-size: 16px;
  margin: 0;
}

.content-subheading {
  font-weight: 700;
  margin: 0;
  font-size: 16px;
}

.content-heading {
  font-weight: 700;
  margin: 0;
  font-size: 20px;
  text-align: center;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.content-header-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.principle-image {
  width: 100%;
  border-radius: 4px;
  max-height: 400px;
  object-fit: cover;
  transition: 0.3s;
}

.principle-image:hover {
  transform: scale(1.025);
}
