* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f4f7fb;
  color: #333;
  line-height: 1.7;
}

/* HERO */
header {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 20px 20px;
  text-align: center;
}

header h1 {
  font-size: 34px;
  margin-bottom: 10px;
  animation: fadeDown 1s ease;
}

header p {
  font-size: 16px;
  opacity: 0.9;
  animation: fadeUp 1.2s ease;
}

/* CONTAINER */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

/* CARD */
.card {
  background: white;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUpCard 0.8s ease forwards;
}

.card:nth-child(2) {
  animation-delay: 0.1s;
}

.card:nth-child(3) {
  animation-delay: 0.2s;
}

.card:nth-child(4) {
  animation-delay: 0.3s;
}

.card:nth-child(5) {
  animation-delay: 0.4s;
}

.card:nth-child(6) {
  animation-delay: 0.5s;
}

h2 {
  color: #2c5364;
  margin-bottom: 12px;
  font-size: 22px;
}

p {
  color: #555;
}

footer {
  text-align: center;
  padding: 25px;
  background: #111;
  color: #aaa;
  font-size: 14px;
}

/* ANIMATIONS */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpCard {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (min-width: 768px) {
  header h1 {
    font-size: 44px;
  }

  header p {
    font-size: 18px;
  }
}
