.info-page {
  width: 100%;
}

.info-hero {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: -60px; /* Overlap the card */
}

.info-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  z-index: 1;
}

.info-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.info-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.info-hero-date {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

.info-main {
  position: relative;
  z-index: 10;
  padding-bottom: 4rem;
}

.info-card {
  padding: 3rem;
  background: var(--card-bg);
  box-shadow: var(--shadow-lg);
}

.info-content-prose {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-main);
  line-height: 1.8;
  font-size: 1.05rem;
}

.info-content-prose h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 0.5rem;
}

.info-content-prose h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.info-content-prose p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.info-content-prose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.info-content-prose li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .info-hero {
    height: 250px;
    margin-bottom: -40px;
  }
  
  .info-hero-title {
    font-size: 2rem;
  }
  
  .info-card {
    padding: 1.5rem;
  }
}
