* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  color: #222;
  line-height: 1.6;
}

/* ===== HEADER ===== */
.site-header {
  background: #1f4f82;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 16px;
  text-align: center;
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 16px;
}

.main-nav a:hover {
  border-bottom: 2px solid rgba(255,255,255,0.7);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay h1 {
  font-size: 34px;
  margin-bottom: 16px;
}

.hero-overlay a {
  background: #4da3ff;
  color: #fff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 16px;
}

/* ===== CONTENT ===== */
.section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 16px;
}

.section h2 {
  margin-bottom: 16px;
}

/* ===== FOOTER ===== */
footer {
  background: #1f4f82;
  color: #fff;
  text-align: center;
  padding: 16px;
  margin-top: 40px;
}
