body { 
    background: #f5f7fa; 
}

.achievements-gallery-page {
  padding: 48px 0 32px 0;
}

.achievements-gallery-page .container {
    max-width: 1200px;
}

.achievements-gallery-page .section-title {
  color: #009688;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 24px;
}

.achievements-gallery-page .title-separator {
  width: 60px;
  height: 4px;
  background: #009688;
  border-radius: 2px;
  margin: 16px auto 32px auto;
}

.achievement-img-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 10px;
  margin-bottom: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.achievement-img-card:hover {
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(0,150,136,0.13);
}

.achievement-img-card img {
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 360px;
  width: 100%;
}

.back-btn {
  display: inline-block;
  margin-bottom: 24px;
  background: #009688;
  color: #fff;
  font-weight: 600;
  border-radius: 24px;
  padding: 8px 24px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,150,136,0.10);
  transition: background 0.2s;
}

.back-btn:hover {
  background: #00796b;
  color: #fff;
  text-decoration: none;
} 