body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #f8f9fa;
}

/* Navbar */
.navbar {
  background-color: #fff !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 0.8rem 1rem;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: #003974 !important;
}
.nav-link {
  color: #003974 !important;
  font-weight: 500;
  padding: 0.7rem 1rem;
  transition: 0.3s;
}
.nav-link:hover,
.nav-link:focus {
  color: #ED1C24 !important;
}
.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.dropdown-item {
  padding: 0.6rem 1rem;
  font-weight: 500;
  color: #003974;
}
.dropdown-item:hover {
  background-color: #FAAB53;
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  background: url('images/banner.jpg?auto=format&fit=crop&w=1600&q=80') 
              center/cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  background: rgba(0, 57, 116, 0.65);
  width: 100%;
  height: 100%;
  padding: 11rem 1rem;
  text-align: center;
  color: #fff;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.hero .btn {
  background-color: #FAAB53;
  border: none;
  font-weight: 600;
}
.hero .btn:hover {
  background-color: #ED1C24;
}

/* Section */
.section {
  padding: 3rem 1rem;
}
.section h2 {
  color: #003974;
  margin-bottom: 2rem;
  font-weight: 700;
}

/* Footer */
footer {
  background: #003974;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}
footer a {
  color: #FAAB53;
  text-decoration: none;
}
