* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f7f7f7;
  color: #061a33;
}

header {
  background: #061a33;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
}

.logo img {
  width: 90px;
}

nav a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  min-height: 85vh;
  background: linear-gradient(rgba(6,26,51,.75), rgba(6,26,51,.75)),
  url("camp-background.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-text {
  max-width: 650px;
}

.hero h1 {
  font-size: 55px;
  color: #ffb000;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
}

button {
  background: #ffb000;
  color: #061a33;
  border: none;
  padding: 15px 28px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  margin-right: 10px;
}

button.outline {
  background: transparent;
  color: white;
  border: 2px solid #ffb000;
}

.section {
  padding: 70px 8%;
  text-align: center;
}

.section h2,
.pbe h2,
.cta h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.pbe {
  background: #b31312;
  color: white;
  text-align: center;
  padding: 80px 8%;
}

.pbe p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 19px;
}

.dark {
  background: #0b3d2e;
  color: white;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.steps div {
  background: rgba(255,255,255,.12);
  padding: 30px;
  border-radius: 18px;
  font-weight: bold;
}

.cta {
  background: #ffb000;
  text-align: center;
  padding: 70px 8%;
}

footer {
  background: #061a33;
  color: white;
  text-align: center;
  padding: 20px;
}