/* ===== Customs Clearance Page Specific Styles ===== */

/* Hero Section */
.hero {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 300px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  pointer-events: none;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.hero-text h1 {
  font-size: 2rem;
  margin: 0 0 0.3rem 0;
}

.hero-text p {
  font-size: 1rem;
  margin: 0;
}

main.container {
  margin-top: 1.5rem;
}
