.about-guide-container {
  font-family: "Noto Sans KR", sans-serif;
  width: 100%;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-guide-banner {
  background-color: #0099FF;
  width: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-guide-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: about-guide-fade-in 0.8s ease forwards;
}

.about-guide-subtitle {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  opacity: 0;
  transform: translateY(20px);
  animation: about-guide-fade-in 0.8s ease forwards 0.3s;
}

.about-guide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #191970;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: about-guide-fade-in 0.8s ease forwards 0.6s;
}

.about-guide-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about-guide-button:active {
  transform: translateY(-1px);
}

.about-guide-icon {
  display: inline-flex;
  margin-right: 0.5rem;
}

/* 애니메이션 키프레임 */
@keyframes about-guide-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 반응형 스타일 */
@media (max-width: 768px) {
  .about-guide-title {
    font-size: 2rem;
  }

  .about-guide-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .about-guide-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-guide-title {
    font-size: 1.7rem;
  }

  .about-guide-subtitle {
    font-size: 0.9rem;
  }

  .about-guide-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}
