.exam-visual {
  height: 35vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f6b93b 0%, #e58e26 100%);
  margin-bottom: 3rem;
}
.exam-visual .sub-hero__title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.3;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 0 1rem;
  max-width: 90%;
}
.exam-visual .visual-lead {
  color: #fff;
  opacity: 0.95;
  font-size: 1.05rem;
  margin-top: 1rem;
}

.info-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 800px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.info-box {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.8rem 1.4rem;
  text-align: center;
}
.info-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--primary-dark);
}
.info-box p {
  font-size: 0.9rem;
  color: var(--brown);
  line-height: 1.6;
}

.quiz-section {
  margin-bottom: 4rem;
}
.quiz-question {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.6rem;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.6s ease both;
}
.question-text {
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
}
.answer-list {
  list-style: none;
  padding-left: 0;
}
.answer-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.answer-list li:last-child {
  border-bottom: none;
}

.action-section {
  margin: 4rem 0 0;
  padding: 3rem 1.2rem;
  text-align: center;
  background: #f6b93b;
  color: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.action-section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.action-section p {
  margin-bottom: 1.2rem;
}
.action-button {
  display: inline-block;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}
.action-button:hover {
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
