
#faq-5 {
  padding: 60px 0;
  background-color: #ffffff;
}
#faq-5 .faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
#faq-5 .faq-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#faq-5 .faq-item {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
#faq-5 .faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#faq-5 .faq-icon {
  font-size: 30px;
  color: #17a2b8;
  margin-right: 20px;
}
#faq-5 .faq-content {
  flex: 1;
}
#faq-5 .faq-question {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
#faq-5 .faq-answer {
  font-size: 14px;
  color: #6c757d;
}



#text-block-24 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #fdf8e1);
}
#text-block-24 .container {
  max-width: 1140px;
}
#text-block-24 .section-title-main {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #5a4e3a;
  margin-bottom: 50px;
}
#text-block-24 .sticky-notes-board {
}
#text-block-24 .sticky-note {
  background-color: var(--note-color, #fff7b0);
  padding: 25px 20px;
  min-height: 180px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transform: rotate(var(--rotation, 0deg));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: "Comic Sans MS", cursive, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
#text-block-24 .sticky-note:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
@media (max-width: 767.98px) {
  #text-block-24 {
    padding: 60px 0;
  }
  #text-block-24 .section-title-main {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  #text-block-24 .sticky-note {
    min-height: 150px;
    font-size: 1rem;
    padding: 20px 15px;
  }
}


