.ack-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem 1.5rem;
  font-family: var(--font-primary);
  color: #333;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ack-container.show {
  opacity: 1;
  transform: translateY(0);
}

.ack-container h1 {
  text-align: center;
  color: var(--villanova-blue);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.ack-section {
  margin-bottom: 2.5rem;
}

.ack-section h2 {
  color: var(--villanova-blue);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.ack-section p {
  line-height: 1.6;
  font-size: 1.05rem;
  margin: 0;
}

@media (max-width: 768px) {
  .ack-container h1 {
    font-size: 2rem;
  }

  .ack-section h2 {
    font-size: 1.2rem;
  }

  .ack-section p {
    font-size: 1rem;
  }
}