:root {
  --primary: #0e4194;
}

.epac-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 3rem 1rem;
  min-height: calc(100vh - 200px);
}

.epac-header { text-align: center; margin-bottom: 2rem; padding-top: 1rem; }
.epac-title {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-weight: 800; color: var(--primary);
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  opacity: 0; transform: translateY(-30px);
  animation: epac-fade-down 0.6s ease forwards;
}
.epac-icon { width: clamp(2.5rem, 2.5vw + 1rem, 3rem); height: auto; color: var(--primary); }

.epac-card {
  background: linear-gradient(135deg, #eff6ff, #eef2ff 45%, #f5f3ff);
  padding: clamp(1.5rem, 2vw + 1rem, 2rem);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  max-width: 56rem; margin: 0 auto;
  opacity: 0; transform: scale(0.9);
  animation: epac-zoom-in 0.5s ease forwards 0.2s;
}

.epac-image { overflow: hidden; border-radius: 0.75rem; box-shadow: 0 6px 16px rgba(2,6,23,0.06); margin-bottom: 1.5rem; }
.epac-image img { width: 100%; height: auto; display: block; }

.epac-text {
  font-size: clamp(1.125rem, 0.8vw + 1rem, 1.25rem);
  line-height: 1.7; color: #374151; text-align: center;
  padding: 0 0.5rem;
  opacity: 0; transform: translateY(20px);
  animation: epac-fade-up 0.5s ease forwards 0.4s;
}

/* Animations */
@keyframes epac-fade-down {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes epac-zoom-in {
  to { opacity: 1; transform: scale(1); }
}
@keyframes epac-fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* Small screens */
@media (max-width: 480px) {
  .epac-container { padding: 2rem 1rem; }
}
