body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(160deg, #0b1d3a, #11294a);
  color: #fff;
  margin: 0;
  padding: 0;
}

header {
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  position: sticky;
  top: 0;
  z-index: 10;
}

header img {
  height: 50px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
}

nav a:hover {
  color: #ff7a00;
}

main {
  text-align: center;
  padding: 40px 20px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.intro {
  color: #ccc;
  margin-bottom: 40px;
  font-size: 1rem;
}

section {
  margin-bottom: 60px;
}

h2 {
  color: #ff7a00;
  font-size: 1.4rem;
  margin-top: 40px;
}

.carousel {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  scroll-behavior: smooth;
  padding: 10px 0;
  justify-content: center;
  scrollbar-width: thin;
}

.carousel img {
  height: 230px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform .3s ease, box-shadow .3s ease;
}

.carousel img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255, 122, 0, 0.6);
}

footer {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.3);
  font-size: 0.9rem;
}
