* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f1f5f9;
  color: #1f2937;
}

header {
  background: #0f172a;
  color: white;
  padding: 15px 20px;
}
.hero {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: white;
  padding: 70px 20px;
}

.hero-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-image img {
    max-height: 260px;
  }
}


.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: white;
  padding: 70px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card h2 {
  color: #2563eb;
  margin-bottom: 10px;
}

.card ul {
  padding-left: 20px;
}

footer {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 15px;
}
footer a{
    color: white;
}
footer a:hover{
    color: blue;
}

/* Mobile */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 26px;
  }
  .nav {
    flex-direction: column;
    gap: 5px;
  }
}
