/* === Reset & Global Styles === */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: white;
  color: #333;
}

/* === Hero Section === */
.hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 90%;
  padding: 0 20px;
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-text h1 {
  font-size: 2.5em;
  margin: 0.2em 0;
  font-weight: bold;
}

.hero-text h3 {
  font-size: 1.3em;
  margin: 0.3em 0;
  font-weight: 500;
}

.hero-text p {
  font-size: 1.1em;
  letter-spacing: 1px;
  font-weight: 600;
}

/* === Space below hero === */
.hero + section,
.hero + div {
  margin-top: 40px;
}

/* === Ribbon or Header (if any) === */
.top-ribbon {
  background-color: #333;
  color: white;
  padding: 10px;
  text-align: right;
  font-size: 0.9em;
}

/* === Footer === */
footer {
  background-color: #f2f2f2;
  text-align: center;
  padding: 20px;
  font-size: 0.8em;
  color: #555;
}
