body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(120deg, #f7f7fa 0%, #b3e0ff 100%);
  background-size: 200% 200%;
  animation: bgMove 8s ease-in-out infinite alternate;
  margin: 0;
  padding: 0;
}
.home-summary-container {
  max-width: 700px;
  margin: 40px auto;
  padding: 24px 12px;
}
.summary-heading {
  text-align: center;
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 32px;
  letter-spacing: 1px;
}
.summary-box {
  background: #f1f1f5;
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s forwards;
}
.summary-box:nth-of-type(1) { animation-delay: 0.1s; }
.summary-box:nth-of-type(2) { animation-delay: 0.3s; }
.summary-box:nth-of-type(3) { animation-delay: 0.5s; }
.summary-box:nth-of-type(4) { animation-delay: 0.7s; }
@keyframes bgMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.summary-box h2 {
  margin-top: 0;
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 14px;
  color: #2d6fa3;
}
.summary-box p {
  margin: 10px 0;
  font-size: 1.08em;
  line-height: 1.6;
}