.achievements-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #f8faff;
}

.achievements-header {
  text-align: center;
  margin-bottom: 50px;
}

.badge {
  display: inline-block;
  background: #004d80;
  color: #fff;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.achievements-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #004d80;
}

.achievements-header p {
  font-size: 16px;
  color: #555;
}

.achievement-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.achievement-item.reverse {
  flex-direction: row-reverse;
}

.achievement-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.achievement-text {
  flex: 1;
}

.achievement-text h3 {
  font-size: 24px;
  color: #004d80;
  margin-bottom: 10px;
}

.achievement-text p {
  font-size: 15px;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .achievement-item,
  .achievement-item.reverse {
    flex-direction: column;
  }

  .achievement-image img {
    max-width: 100%;
  }

  .achievements-header h2 {
    font-size: 26px;
  }
}
