.page-hero {
  height: 70vh;
  position: relative;
  background-size: cover;
  background-position: center;
}

.transfer-hero {
  background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=2000&q=80');
}

.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
}

.page-hero .content {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.page-content {
  padding: 80px 60px;
  background: #050505;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature {
  background: #111;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

.feature i {
  font-size: 35px;
  color: gold;
  margin-bottom: 15px;
}

.footer {
  padding: 30px;
  text-align: center;
  background: #000;
  border-top: 1px solid #222;
}

.footer .social a {
  margin: 0 10px;
  color: gold;
  font-size: 18px;
}
/* Black dropdown backgrounds */
select option,
select optgroup {
  background: #000;
  color: #fff;
}

select optgroup {
  background: #111;
  font-weight: 600;
}

/* Desktop-only layout - no media queries */
