.hero-section {
  text-align: center;
  margin-bottom: 40px;
  padding: 60px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
  background-image: url('/images/tech-banner.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 19, 43, 0.7);
  z-index: 1;
}

.hero-section .main-title,
.hero-section .subtitle,
.hero-section .intro-text {
  position: relative;
  z-index: 2;
  font-family: 'Orbitron', sans-serif;
}

.main-title {
  font-size: 4.5rem;
  margin: 0;
  color: #00F0FF;
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.8), 0 0 5px rgba(0, 0, 0, 0.9);
  letter-spacing: 4px;
  font-weight: 800;
}

.subtitle {
  font-size: 1.5rem;
  margin: 15px 0 25px;
  color: #FFD600;
  text-shadow: 0 0 10px rgba(255, 214, 0, 0.7), 0 0 5px rgba(0, 0, 0, 0.9);
  font-weight: 600;
  letter-spacing: 2px;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9), 0 0 5px rgba(0, 0, 0, 0.9);
  letter-spacing: 1px;
  font-weight: 400;
}
