/* Hero Text Styling with Blurry Background and Arrow */
.cs_hero_text_wrapper {
  display: inline-block;
  position: relative;
  padding: 15px 25px;
  
}

.cs_hero_text_wrapper p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.cs_down_arrow {
  color: var(--accent-color, #FCBF0D); /* Using theme accent color */
  transition: transform 0.3s ease;
  animation: bounce 2s infinite;
}

.cs_hero_text_wrapper:hover .cs_down_arrow {
  transform: translateY(3px);
}

/* Bounce animation for the arrow */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cs_hero_text_wrapper {
    padding: 12px 20px;
  }
  
  .cs_hero_text_wrapper p {
    font-size: 20px !important;
  }
}

@media (max-width: 480px) {
  .cs_hero_text_wrapper {
    padding: 10px 15px;
  }
  
  .cs_hero_text_wrapper p {
    font-size: 18px !important;
    flex-direction: column;
    gap: 5px;
  }
}