/* =========================
   CORE GLOBAL STYLES
   ========================= */

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
}

/* ===== HEADER + VIDEO ===== */

header {
  position: relative;
  width: 100%;
  height: 473px;
  overflow: hidden;
}

header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header .container {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  color: white;
  z-index: 2;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

/* ===== MAIN LAYOUT ===== */

main {
  display: block;
}

.main-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

section {
  margin-bottom: 60px;
}

section h2,
section h3 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 1rem;
}

section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  color: #34495e;
  line-height: 1.6;
}

/* ===== FOOTER ===== */

footer {
  background-color: #333;
  color: white;
  padding: 30px 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer .link {
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}

.footer .link p {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer .link a {
  display: block;
  color: white;
  text-decoration: none;
}

.footer .footer-bottom {
  text-align: center;
  margin-top: 20px;
  width: 100%;
}

/* ===== CORE RESPONSIVE ===== */

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: 90%;
  }

  header h1 {
    font-size: 1.5rem;
    margin: 0;
  }
}
