.faq_title {
  font-size: 28px;
  font-weight: bold;
  color: #1c1e21;
  margin-bottom: 30px;
}

.faq_item {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #fff;
}
.faq_item.active .faq_question {
  background-color: #f0f0f0;
}

.faq_item h3 {
  font-size: 20px;
  margin-bottom: 0px;
}

.faq_question {
  width: 100%;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  background: #fff;
  color: #222831;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  outline: none;
  transition: background 0.3s ease;
}

.faq_question:hover {
  background-color: #f0f0f0;
}

.faq_answer {
  display: none;
  color: var(--light-dark);
  animation: fadeIn 0.3s ease-in-out;
  padding: 18px 20px;
}

.faq_answer p {
  font-size: 16px !important;
  margin-bottom: 0px !important;
}

.arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq_item.active .arrow {
  transform: rotate(180deg);
}

/* CASINO REVIEW */
.casino_review_top_wrapper {
  background-color: #d2e3de;
  padding: 15px 0px;
}

.casino_review_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.casino_review_logo img {
  width: 150px;
  border-radius: 10px;
}

/* EXPERT CARD CSS */
.expert_card_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 60px;
  width: 100%;
  background-color: #d2e3de;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 20px;
  overflow: hidden;
}

.expert_image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 100%;
}

.expert_left_content {
  width: 100%;
}

.expert_left_content h4 {
  font-size: 19px;
  margin-bottom: 10px;
}

.expert_left_content p {
  font-size: 14px;
  margin: 10px 0px;
}

.expert_left_content p:last-child {
  margin-bottom: 0px;
}

/* CSS FOR IMAGES */
.responsive_img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .faq_item h3 {
    font-size: 16px;
  }

  .casino_review_top_wrapper {
    width: 100%;
    position: fixed;
    bottom: 0px;
  }

  .casino_review_logo img {
    width: 90px;
  }

  .btn.review {
    width: 120px;
    font-size: 16px;
  }

  .expert_card_container {
    row-gap: 20px;
    flex-direction: column;
    padding: 20px 15px;
  }
}
