body {
  background-color: #f7f7fb;
  color: #111;
}

.overview-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.overview-main h2 {
  font-size: 2rem;
  color: #033ab1;
  margin-bottom: 20px;
  text-align: left;
}

.overview-main p {
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

.overview-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 24px 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #033ab1;
  opacity: 0;
  transform: translateY(24px);
  animation: overviewFadeUp 0.7s ease forwards;
}

.overview-section p:nth-of-type(1) { animation-delay: 0.05s; }
.overview-section p:nth-of-type(2) { animation-delay: 0.15s; }
.overview-section p:nth-of-type(3) { animation-delay: 0.25s; }
.overview-section p:nth-of-type(4) { animation-delay: 0.35s; }
.overview-section p:nth-of-type(5) { animation-delay: 0.45s; }

.overview-footer {
  background: #011f4b;
  color: #f4f4f4;
  padding: 20px 16px;
  text-align: center;
}

.overview-footer__inner {
  max-width: 960px;
  margin: 0 auto;
}

.overview-footer__name {
  font-weight: 600;
  margin: 0 0 4px;
}

.overview-footer__company {
  font-size: 0.9rem;
  margin: 0 0 6px;
}

.overview-footer__copy {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.8;
}

@keyframes overviewFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .overview-main {
    padding: 40px 16px 32px;
  }

  .overview-main h2 {
    font-size: 1.6rem;
  }

  .overview-section {
    padding: 20px 18px 8px;
  }
}

