.baggage-hero {
  margin-top: 5%;
  position: relative;
  height: 80vh;
  background: url('../pics/baggage-bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.baggage-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 24, 14, 0.6);
}

.baggage-hero .hero-text {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.baggage-hero .hero-text {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.baggage-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.baggage-about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 10%;
  flex-wrap: wrap;
  background-color: #f8fbff;
}

.baggage-about .content {
  flex: 1 1 50%;
}

.baggage-about h2 {
  color: #003366;
  margin-bottom: 20px;
}

.baggage-about p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.baggage-about .image {
  flex: 1 1 40%;
  text-align: center;
}

.baggage-about img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background-color: #eaf3fc;
  padding: 80px 10%;
  text-align: center;
}

.process-section h2 {
  color: #002b70;
  margin-bottom: 50px;
}

.process-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.process-step {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.process-step h3 {
  color: #1a4b84;
  margin-bottom: 10px;
}

.process-step p {
  color: #333;
  line-height: 1.6;
}