* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

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


.logo-center {
  text-align: center;
  margin: 20px 0;
}

.logo-center img {
  width: 120px;
  height: auto;
}

/* Navigation */
.nav {
  text-align: center;
  background: #fff;
  padding: 15px;
}

.nav a {
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  color: #333;
}

.nav a:hover {
  color: #c00;
}

/* Content Styling */
.intro {
  text-align: center;
  background: #ffffff;
  padding: 40px 20px;
}

.intro h1 {
  font-size: 2.2em;
  color: #222;
  margin-bottom: 10px;
}

.intro p {
  font-size: 1.2em;
  color: #555;
}

.featured-images {
  background: #ffffff;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.featured-images img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.content {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  background: #fff;
}
/* Banner with text overlay */
.hero {
  background-image: url('images/banner_smaller.jpg');
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.banner-text h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.banner-text p {
  font-size: 1.2em;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.highlight-box {
  background-color: #f9f9f9;
  padding: 15px;
  border-left: 5px solid #d33;
  margin: 20px 0;
}
.btn {
  background-color: #d33;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
}
.btn:hover {
  background-color: #b22;
}

