body {
  font-family: 'Poppins', sans-serif;
  background-color: #f0f4f9;
}

.navbar {
  background-color: #003580;
}

.nav-link {
  color: white !important;
}

.btn-primary {
  background-color: #003580;
  border: none;
}

.btn-warning {
  background-color: #febb02;
  border: none;
  color: #003580;
  font-weight: 600;
}

.btn-warning:hover {
  background-color: #e0a800;
  color: white;
}

.hero {
  background: url('/images/seychelles-hero.jpg') no-repeat center center/cover;
  height: 400px;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.feature-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
}

.feature-box:hover {
  transform: translateY(-5px);
}