body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f7f7fb;
  color: #111;
}

.objectives-main {
  padding: 60px 20px 40px;
}

.objectives,
.structure {
  max-width: 960px;
  margin: 0 auto 40px;
}

.objectives h2,
.structure h2 {
  color: #033ab1;
  font-size: 1.6rem;
  margin-bottom: 18px;
  text-align: left;
}

.objectives ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.objectives ul li {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #033ab1;
  opacity: 0;
  transform: translateY(20px);
  animation: objectiveFadeUp 0.6s ease forwards;
}

.objectives ul li:nth-child(1) { animation-delay: 0.1s; }
.objectives ul li:nth-child(2) { animation-delay: 0.2s; }
.objectives ul li:nth-child(3) { animation-delay: 0.3s; }
.objectives ul li:nth-child(4) { animation-delay: 0.4s; }
.objectives ul li:nth-child(5) { animation-delay: 0.5s; }
.objectives ul li:nth-child(6) { animation-delay: 0.6s; }
.objectives ul li:nth-child(7) { animation-delay: 0.7s; }

.structure {
  text-align: center;
}

.structure-chart {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(20px);
  animation: objectiveFadeUp 0.6s ease forwards;
  animation-delay: 0.4s;
}

footer {
  background-color: #033ab1;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 40px;
}

@keyframes objectiveFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
