.section6-colorable-icon {
  width: auto;
  height: auto;
  color: #FFFFFF;
  padding: 5px;
  margin-top: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section6-colorable-icon:hover {
  transform: translateY(0) scale(1.1);
  filter: brightness(1.2);
}

.section6-container {
  max-width: 1100px;
  padding-bottom: 100px;
  margin: 0 auto;
  transition: all 0.8s ease-out;
}

.section6-h1 {
  background: linear-gradient(135deg, #FF6680 5%, #FF4DA9 45%, #CD42D7 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4.5em;
  font-family: inconsolata, sans-serif;
  font-weight: 700;
  transition: all 0.8s ease-out;
}

.section6-container-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: start;
  margin-top: 2em;
  margin-bottom: 2em;
  transition: all 0.8s ease-out;
}

.section6-sub-content-container {
  transition: all 0.3s ease;
}

.section6-sub-content-container:hover {
  transform: translateY(-10px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section6-content {
  padding: 1.5em;
  transition: all 0.3s ease;
}

.section6-content-h1 {
  color: #dad1e6;
  font-size: 2em;
  transition: all 0.6s ease-out;
}

.section6-sub-content-container:hover .section6-content-h1 {
  color: #FF4DA9;
}

.section6-content-p {
  color: #dad1e6;
  font-size: 1.8em;
  transition: all 0.6s ease-out;
}

.section6-sub-content-container:hover .section6-content-p {
  color: #ffffff;
}

/* Scroll animation states - hidden by JavaScript when ready */
/* .section6-container.scroll-ready {
  opacity: 0;
  transform: scale(0.95);
}

.section6-h1.scroll-ready {
  opacity: 0;
  transform: translateX(-50px);
}

.section6-container-wrapper.scroll-ready {
  opacity: 0;
  transform: translateY(20px);
}

.section6-sub-content-container.scroll-ready {
  opacity: 0;
  transform: translateY(40px);
}

.section6-content-h1.scroll-ready {
  opacity: 0;
  transform: translateX(-20px);
}

.section6-content-p.scroll-ready {
  opacity: 0;
  transform: translateX(-20px);
}

.section6-colorable-icon.scroll-ready {
  opacity: 0;
  transform: translateY(30px);
}


.section6-container.animate {
  animation: containerFadeIn 1s ease-out forwards;
}

.section6-h1.animate {
  animation: titleSlideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.section6-container-wrapper.animate {
  animation: wrapperFadeIn 1s ease-out 0.3s forwards;
}

.section6-sub-content-container.animate {
  animation: staggeredFadeIn 0.8s ease-out forwards;
}

.section6-sub-content-container.animate:nth-child(1) {
  animation-delay: 0.4s;
}

.section6-sub-content-container.animate:nth-child(2) {
  animation-delay: 0.6s;
}

.section6-sub-content-container.animate:nth-child(3) {
  animation-delay: 0.8s;
}

.section6-content-h1.animate {
  animation: textSlideIn 0.6s ease-out 1s forwards;
}

.section6-content-p.animate {
  animation: textSlideIn 0.6s ease-out 1.2s forwards;
}

.section6-colorable-icon.animate {
  animation: fadeInUp 0.8s ease-out forwards, arrowPulse 3s ease-in-out infinite 2s;
} */

/* Arrow pulse animation */
/* @keyframes arrowPulse {
  0%, 100% { 
      transform: scale(1); 
      filter: brightness(1);
  }
  50% { 
      transform: scale(1.05); 
      filter: brightness(1.1);
  }
} */

/* Keyframe Animations */
/* @keyframes containerFadeIn {
  from {
      opacity: 0;
      transform: scale(0.95);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
} */

/* @keyframes titleSlideIn {
  from {
      opacity: 0;
      transform: translateX(-50px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
} */

/* @keyframes wrapperFadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
} */
/* 
@keyframes staggeredFadeIn {
  from {
      opacity: 0;
      transform: translateY(40px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

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

@keyframes textSlideIn {
  from {
      opacity: 0;
      transform: translateX(-20px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
} */

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  .section6-sub-content-container {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
  }
  
  .section6-container-wrapper {
      flex-direction: column;
      align-items: center;
  }

  .section6-colorable-icon {
      transform: rotate(90deg);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .section6-colorable-icon:hover {
      transform: rotate(90deg) scale(1.1);
  }

  .section6-content {
      max-width: 100%;
      padding: 1em;
      text-align: center;
  }

  .section6-content-h1,
  .section6-content-p {
      font-size: 1.5rem;
  }

  .section6-h1 {
      font-size: 2.6rem;
      /* text-align: center; */
  }

  .section6-container {
      padding: 2em 1em;
  }
  
  .section6-sub-content-container:hover {
      transform: translateY(-5px);
  }
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .section6-container {
      padding: 1.5rem;
  }

  .section6-container-wrapper {
      gap: 1.5rem;
  }

  .section6-content {
      padding: 1.2em;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .section6-container {
      padding: 1rem;
      padding-bottom: 50px;
  }

  .section6-h1 {
      margin-bottom: 2rem;
      text-align:center;
  }

  .section6-container-wrapper {
      flex-direction: column;
      align-items: center;
      gap: 3rem;
      margin-top: 1.5em;
      margin-bottom: 1.5em;
  }

  .section6-sub-content-container {
      max-width: 100%;
      flex-direction: row;
      align-items: center;
      text-align: left;
      width: 100%;
      position: relative;
  }

  .section6-colorable-icon {
      transform: rotate(90deg) !important;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      flex-shrink: 0;
      margin: 0 2rem 0 0;
      width: 150px;
      height: 75px;
  }

  .section6-colorable-icon:hover {
      transform: rotate(90deg) scale(1.1) !important;
  }

  .section6-content {
      padding: 0;
      text-align: left;
      flex: 1;
      min-height: 120px;
  }

  .section6-content-h1 {
      margin-bottom: 0.8rem;
  }

  .section6-sub-content-container:hover {
      transform: translateY(-5px);
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .section6-container {
      padding: 0.75rem;
  }

  .section6-container-wrapper {
      gap: 2.5rem;
  }
  .section6-h1 {
    font-size: 3.5rem;
  }

  .section6-content-h1 {
    font-size: 2rem;
  }

  .section6-content-p {
    font-size: 1.5rem;
  }

  .section6-sub-content-container {
      margin: 0 0.5rem;
  }

  .section6-colorable-icon {
      height: 65px;
      margin: 0 1.5rem 0 0;
      transform: rotate(90deg) !important;
  }

  .section6-colorable-icon:hover {
      transform: rotate(90deg) scale(1.1) !important;
  }

  .section6-content {
      padding: 0.5rem 0;
      min-height: 100px;
  }
}

.section6-container.fade-hidden {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.section6-h1.fade-hidden {
  opacity: 0;
  transform: translateX(-100px);
}

.section6-container-wrapper.fade-hidden {
  opacity: 0;
  transform: translateY(80px);
}

.section6-sub-content-container.fade-hidden {
  opacity: 0;
  transform: translateY(60px) scale(0.9);
}

.section6-content-h1.fade-hidden {
  opacity: 0;
  transform: translateX(-40px);
}

.section6-content-p.fade-hidden {
  opacity: 0;
  transform: translateX(-40px);
}

.section6-colorable-icon.fade-hidden {
  opacity: 0;
  transform: translateY(40px) scale(0.8);
}

/* Animated states */
.section6-container.fade-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.section6-h1.fade-in {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.section6-container-wrapper.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.section6-sub-content-container.fade-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.section6-sub-content-container.fade-in:nth-child(1) {
  transition-delay: 0.6s;
}

.section6-sub-content-container.fade-in:nth-child(2) {
  transition-delay: 0.8s;
}

.section6-sub-content-container.fade-in:nth-child(3) {
  transition-delay: 1s;
}

.section6-content-h1.fade-in {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.2s;
}

.section6-content-p.fade-in {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.4s;
}

.section6-colorable-icon.fade-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.8s;
  animation: iconPulse 3s ease-in-out infinite 2s;
}

/* Icon pulse animation */
@keyframes iconPulse {
  0%, 100% { 
      transform: translateY(0) scale(1); 
      filter: brightness(1);
  }
  50% { 
      transform: translateY(0) scale(1.05); 
      filter: brightness(1.2);
  }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
  }
}