body {
  font-family: "Inter", Arial, sans-serif;
  background: #fff8e8;
  margin: 0;
  padding: 0;
  color: #222;
}

.over-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;
  min-height: 100vh;
  background-color: #fff1dd;
  box-sizing: border-box;
}

.over-content {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 120px); /* Account for padding */
  min-height: 600px;
  h2 {
    text-align: left;
    font-size: var(--h2-font-size);
    margin-bottom: 30px;
    color: var(--h2-text-color);
    flex-shrink: 0;
  }
  h2::after {
    content: "";
    display: block;
    width: 460px;
    height: 3px;
    background-color: var(--header-link-color);
    margin-top: 10px;
  }
}
