* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-main {
  font-size: 32px;
  font-weight: bold;
  color: #f4a000;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
}

.btn-outline {
  border: 1px solid #333;
  padding: 6px 14px;
  border-radius: 20px;
}

/* HERO */
.hero {
  position: relative;
}

.hero img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(255,255,255,0.85);
  padding: 20px;
  max-width: 420px;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.light {
  background: #fafafa;
}

.dark {
  background: #000;
  color: #fff;
}

.center {
  text-align: center;
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-images img {
  width: 100%;
  margin-bottom: 20px;
  transform: skew(-2deg);
}

/* SPLIT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split-img {
  width: 100%;
}

/* PROGRAMS */
.programs {
  background: #111;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  margin-top: 40px;
}

.program {
  background: #f4a000;
  color: #000;
  padding: 20px;
  font-weight: bold;
}

/* CAPTAINS */
.captains {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  text-align: center;
}

.captain img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* CONTACT */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-img {
  width: 100%;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about, .split, .contact {
    grid-template-columns: 1fr;
  }

  .captains {
    grid-template-columns: 1fr;
  }

  .hero img {
    height: 50vh;
  }
}
