/* 🔹 General Reset */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* 🔹 Banner Section */
.banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.banner-text h1 {
  font-size: 3rem;
  margin: 0;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.banner-text nav {
  margin-top: 15px;
}

.banner-text nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.banner-text nav a:hover {
  color: #f1c40f;
}

/* 🔹 Main Layout */
.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

.container img {
  max-width: 420px;
  border-radius: 7px;
}

.caption {
  font-size: 0.9rem;
  color: #666;
  margin-top: 8px;
  text-align: left;
}

/* 🔹 Text Blocks */
main {
  max-width: 500px;
}

main h2 {
  font-size: 2rem;
  font-weig
