/* Content styles */
.content {
  flex: 1 0 auto;
  padding: 0;
  display: block;
  width: 100%;
}

.content-scroller {
  overflow: visible;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  color: var(--text-color);
  margin-right: 0px;
  margin-bottom: 20px;
  margin-top: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-title:first-child {
  margin-top: 0;
}

h1 {
  font-size: 28px;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.font-bold {
  font-weight: 700;
}

.info-box {
  text-align: center;
  border: 1px solid var(--primary-border);
  background: var(--primary-light);
  padding: 24px 16px;
  border-radius: var(--radius-md);
  margin: 24px auto 30px auto;
  width: 85%;
}

@media (max-width: 1024px) {
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 1.4rem;
    margin-bottom: 14px;
    margin-top: 14px;
    line-height: 1.3;
  }

  h1 {
    font-size: 1.35rem;
    line-height: 1.3;
  }

  p {
    line-height: 1.7;
  }

  .info-box {
    width: 100%;
    padding: 18px 12px;
    margin: 16px auto 24px auto;
  }
}
