* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #f5f5f5;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-bar {
  padding: 6px;
}

.cta-btn {
  background: #2c5d8a;
  color: white;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
}

/* RED BAR */
.top-bar {
  background: red;
  color: white;
  text-align: center;
  padding: 8px;
}

/* HERO */
.hero {
  background: url('hero.png') no-repeat center center/cover;
  height: 90vh;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,0.4);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h2 {
  color: white;
  font-size: 40px;
}

/* HOW IT WORKS */
.info {
  padding: 60px;
  text-align: center;
  margin-top: 40px;
}

/* WHATTODO IMAGE */
.whattodo-section {
  width: 100%;
  margin: 30px 0;
  text-align: center;
}

.whattodo-section img {
  width: 90%;   /* 👈 shrink overall size */
  height: auto;
}

/* STEPS */
.features {
  display: flex;
  justify-content: space-around;
  padding: 50px;
  text-align: center;
  margin-top: 20px;
}

.feature-box {
  width: 30%;
}

/* EXTRA HEADING */
.extra-heading {
  text-align: center;
  padding: 60px 20px 20px;
}

/* DISCLAIMER */
.disclaimer {
  background: #2c4f75;
  color: white;
  text-align: center;
  padding: 20px;
  font-weight: bold;
  margin-top: 40px;
}

/* MEX IMAGE */
.mex-section {
  background: url('mex1.png') no-repeat center center/cover;
  height: 400px;
  width: 100%;
}

/* MAP */
.map-section {
  text-align: center;
  padding: 60px;
}

.map-section img {
  width: 80%;
}

/* FOOTER */
.footer {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  background: white;
  color: black;
  border-top: 1px solid #ddd;
}

.footer-left,
.footer-right {
  width: 45%;
}

.footer ul {
  list-style: none;
  margin-top: 10px;
}

.footer a {
  color: black;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}