body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #222;
  scroll-behavior: smooth;
}

/* Hero Section */
header {
  background: linear-gradient(90deg, #004aad, #0099ff);
  color: white;
  text-align: center;
  padding: 60px 20px 30px;
}

header img {
  width: 150px;
  height: auto;
  margin-bottom: 15px;
}

header h1 {
  font-size: 2.8rem;
  margin: 10px 0 5px;
}

header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 20px;
}

/* Coming Soon Banner */
.banner {
  background-color: #ffcc00;
  color: #000;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 3px solid #e0b200;
  animation: pulse 2s infinite;
  position: sticky;
  top: 0;
  z-index: 999;
}

@keyframes pulse {
  0%, 100% { background-color: #ffcc00; }
  50% { background-color: #ffe066; }
}

/* Navigation */
nav {
  background-color: #004aad;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

nav a {
  color: white;
  margin: 8px 15px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffcc00;
}

/* Main Sections with subtle design */
main {
  padding: 40px 20px;
}

section {
  margin: 30px auto;
  padding: 25px 20px;
  max-width: 900px;
  background-color: #fdfdfd;
  border-left: 6px solid #004aad;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

section:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

section h2 {
  color: #004aad;
  margin-bottom: 15px;
}

section p, section li {
  line-height: 1.6;
  color: #444;
}

ul {
  list-style: disc inside;
  padding-left: 0;
}

/* Social Section */
#social {
  text-align: center;
  margin-top: 40px;
}

#social h2 {
  color: #004aad;
  margin-bottom: 20px;
}

#social p {
  font-size: 1.1rem;
  color: #444;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.social-img:hover {
  transform: scale(1.1);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background-color: #333;
  color: white;
  font-size: 0.9rem;
}
