/* ===== PAGE CONTENT AREA ===== */
.page-section {
  display: none;
  opacity: 0;
  flex: 1;
}

.page-section.active {
  display: flex;
  flex-direction: column;
  flex: 1;
  animation: fadeIn 0.25s ease-in-out forwards;
}

.page-section.fade-out {
  display: flex;
  flex-direction: column;
  flex: 1;
  animation: fadeOut 0.2s ease-in-out forwards;
  pointer-events: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* ===== MAIN CONTENT BLOCK ===== */
.content-block {
  background: linear-gradient(rgba(27, 56, 152, 0.6), rgba(27, 56, 152, 0.6)), #f4f6ff;
  flex: 1;
  padding: 55px 40px 100px;
  min-height: calc(100vh - 73px - 80px);
}

.content-inner {
  max-width: 620px;
  margin-left: 220px;
}

.content-inner h2 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.content-inner p {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-weight: 400;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.content-inner p:last-child {
  margin-bottom: 0;
}

.content-inner a.inline-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 400;
}

.content-inner a.inline-link:hover {
  color: #e0e0ff;
}
