.info-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(102, 126, 234, 0.1);
  animation: slideInUp 0.6s ease-out backwards;
}

.info-section:nth-child(1) {
  animation-delay: 0.1s;
}
.info-section:nth-child(2) {
  animation-delay: 0.2s;
}
.info-section:nth-child(3) {
  animation-delay: 0.3s;
}
.info-section:nth-child(4) {
  animation-delay: 0.4s;
}
.info-section:nth-child(5) {
  animation-delay: 0.5s;
}

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

.info-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.title-icon {
  font-size: 1.25rem;
}

.info-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.info-stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--light-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
  animation: fadeIn 0.4s ease-out backwards;
}

.info-stat-item:nth-child(1) {
  animation-delay: 0.1s;
}
.info-stat-item:nth-child(2) {
  animation-delay: 0.2s;
}
.info-stat-item:nth-child(3) {
  animation-delay: 0.3s;
}
.info-stat-item:nth-child(4) {
  animation-delay: 0.4s;
}

.info-stat-item:hover {
  background: #e5e7eb;
  transform: translateX(5px);
}

.info-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
}

.info-stat-details {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.info-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
}

.info-stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.stat-progress {
  width: 100%;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.stat-bar {
  height: 100%;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.info-guide {
  font-size: 0.875rem;
  color: #4b5563;
}

.info-guide p {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.info-guide ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.info-guide li {
  padding: 0.375rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.info-guide li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

@media (max-width: 768px) {
  .info-section {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .info-title {
    font-size: 0.9375rem;
    margin-bottom: 0.875rem;
  }
  .info-stat-item {
    padding: 0.875rem;
  }
  .info-stat-number {
    font-size: 1.375rem;
  }
  .info-stat-label {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .info-title {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
  .title-icon {
    font-size: 1.125rem;
  }
  .info-stat-item {
    padding: 0.75rem;
    gap: 0.625rem;
  }
  .info-stat-icon {
    width: 36px;
    height: 36px;
    font-size: 1.125rem;
  }
}
