/* Hero Section */
.hero {
  background: linear-gradient(135deg, #004AAD 0%, #0066DD 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 153, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h2 {
  font-size: 32px;
  margin: 0 0 10px 0;
  font-weight: 700;
  line-height: 1.3;
}

.hero p {
  font-size: 16px;
  margin: 0 0 40px 0;
  opacity: 0.95;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #FF9900;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid #FF9900;
}

.btn-primary:hover {
  background: #E68A00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid white;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: white;
  color: #004AAD;
}