.guides-hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  padding: 4rem 0 3rem;
  color: white;
}

.guide-card {
  background: white;
  border-radius: 16px;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  text-align: center;
}

.guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #4facfe;
}

.guide-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin: 0 auto 1.5rem;
}

.guide-description {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  min-height: 60px;
}
