body {
  background-color: #f8f9fa;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.section-title {
  color: #333;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.option-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.option-card:hover {
  border-color: #2c5aa0;
  box-shadow: 0 4px 12px rgba(44, 90, 160, 0.15);
  transform: translateY(-2px);
}

.button-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.button-group .btn {
  flex: 1;
  max-width: 150px;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.button-group .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.button-group .btn i {
  margin-right: 0.5rem;
}

.option-icon {
  width: 60px;
  height: 60px;
  color: #2c5aa0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.option-content h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.option-content p {
  color: #666;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.4;
}
