.page-content {
  min-height: calc(100vh - 200px);
}

.page-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--soft-gray) 0%, var(--white) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  line-height: 1.2;
  color: var(--midnight-navy);
  margin-bottom: 16px;
  font-weight: 700;
}

.page-intro {
  font-size: 18px;
  color: var(--medium-gray);
  line-height: 1.6;
}

.page-section {
  padding: 60px 0;
}

.page-section.bg-gray {
  background-color: var(--soft-gray);
}

.page-section h2 {
  font-size: 32px;
  color: var(--midnight-navy);
  margin-bottom: 24px;
  font-weight: 700;
}

.page-section h3 {
  font-size: 22px;
  color: var(--midnight-navy);
  margin-bottom: 16px;
  margin-top: 32px;
  font-weight: 600;
}

.page-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.page-section ul {
  margin: 20px 0 20px 24px;
  line-height: 1.8;
}

.page-section li {
  font-size: 16px;
  color: var(--dark-gray);
  margin-bottom: 12px;
}

.page-section a {
  color: var(--electric-teal);
  text-decoration: none;
}

.page-section a:hover {
  text-decoration: underline;
}

.page-section strong {
  color: var(--midnight-navy);
  font-weight: 600;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.feature-item {
  padding: 24px;
  background-color: var(--white);
  border-radius: 8px;
  border: 1px solid #E5E9F0;
}

.feature-item h3 {
  font-size: 20px;
  color: var(--midnight-navy);
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links p {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--soft-gray);
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--electric-teal);
  text-decoration: underline;
}

.about-svg-container {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.about-svg {
  width: 120px;
  height: 120px;
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 32px;
  }

  .page-section h2 {
    font-size: 28px;
  }

  .page-section h3 {
    font-size: 20px;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-section {
    padding: 40px 0;
  }

  .about-svg {
    width: 100px;
    height: 100px;
  }
}
