.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-color) 0%, #fff 100%);
  padding: 60px 0;
}

.heroContainer {
  text-align: center;
  max-width: 900px;
}

.heroContainer h1 {
  font-size: 42px;
  color: var(--secondary-color);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 60px;
}

.options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.cardLihat, .cardLapor {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cardLihat:hover, .cardLapor:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.cardLihat .icon, .cardLapor .icon {
  font-size: 48px;
  background: var(--bg-color);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cardLihat h2, .cardLapor h2 {
  font-size: 24px;
  color: var(--secondary-color);
}

.cardLihat p, .cardLapor p {
  color: var(--text-light);
}

.cardLapor .icon {
  color: var(--primary-color);
  background: #fdf2f2;
}

@media (max-width: 768px) {
  .options {
    grid-template-columns: 1fr;
  }
  .heroContainer h1 {
    font-size: 32px;
  }
}
