.objectives-section {
  padding: 90px 0;
  background: #fff;
}

.objective-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  border: 1px solid #e8ebef;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.objective-card:hover {
  border-color: #0c3d97;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.objective-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(12, 61, 151, 0.1);
  color: #0c3d97;
  font-size: 22px;
  flex-shrink: 0;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.objective-card:hover .objective-card-icon {
  background: #0c3d97;
  color: #fff;
}

.objective-card-title {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  color: #232323;
}

.objective-card p {
  margin: 0;
  color: #777;
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .objective-card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .objective-card:hover {
    transform: none;
  }
}

@media (max-width: 767px) {
  .objectives-section {
    padding: 70px 0;
  }
}
