.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;
}

.toc_wrapper {
  background: #f9fafc;
  border: 1px solid #e3e6ea;
  border-radius: 10px;
  padding: 15px 20px;
  margin: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* --- Toggle Button --- */
.toc_toggle {
  color: var(--dark);
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.toc_arrow {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.toc_toggle[aria-expanded="false"] .toc_arrow {
  transform: rotate(-90deg);
}

/* --- List --- */
.toc_list {
  list-style: none;
  margin: 0 !important;
  display: grid;
  grid-template-columns: repeat(2, minmax(340px, 1fr));
  gap: 10px;
  transition: max-height 0.3s ease;
  margin-top: 20px !important;
}

.toc_list li {
  background: #f1f1f1;
  padding: 10px;
  border-radius: 10px;
  list-style: none;
}

.toc_list a {
  color: #1554b0;
  font-weight: 500;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.2s ease;
}

.toc_list a:hover {
  color: #003f8c;
}

/* --- Collapsed --- */
.toc_list.collapsed {
  display: none;
}

@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;
  }

  .toc_list {
    grid-template-columns: 1fr;
  }

  .toc_wrapper {
    margin: 15px 0;
    padding: 15px;
  }
}
