.uxfaq-container {
  max-width: 800px;
  margin: 0 auto;
}

.uxfaq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.uxfaq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.uxfaq-question {
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #222;
  transition: background 0.3s ease;
}

.uxfaq-question:hover {
  background: #f0f0f0;
}

.uxfaq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  transition: all 0.4s ease;
  padding: 0 20px;
  line-height: 1.6;
  color: #555;
}

.uxfaq-item.active .uxfaq-answer {
  max-height: 300px;
  padding: 15px 20px;
}

.uxfaq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.uxfaq-item.active .uxfaq-icon {
  transform: rotate(45deg);
}

/* FAQ IMAGE RESPONSIVE */

.faq-responsive-img{
width:100%;
max-width:450px;
height:auto;
display:block;
margin:auto;
object-fit:contain;
}
/* .faq-side-image{
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
} */
/* Large Desktop */

@media (min-width:1400px){
.faq-responsive-img{
max-width:500px;
}
}

/* Laptop */

@media (max-width:1200px){
.faq-responsive-img{
max-width:420px;
}
}

/* Tablet */

@media (max-width:992px){
.faq-responsive-img{
max-width:350px;
margin-bottom:30px;
}
}

/* Mobile */

@media (max-width:768px){
.faq-responsive-img{
max-width:280px;
margin-bottom:30px;
}
}

/* Small Mobile */

@media (max-width:480px){
.faq-responsive-img{
max-width:220px;
}
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .faq-responsive-img {
    display: none !important; /* This hides the image on mobile */
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .faq-responsive-img {
    display: none !important; /* Ensures it stays hidden on very small screens */
  }
}