/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 25 2024 | 13:14:01 */
.faq-container {
  width: 75%;
  margin: 0 auto;
  padding-top: 15px;
}

.faq-title {
  cursor: pointer;
  padding: 10px;
  background-color: white;
  color: black;
  margin-bottom: 0;
  transition: background-color 0.3s, color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold; /* Titles are now bold */
}

.faq-title:hover, .faq-title.active {
  background-color: #202020;
  color: #e1caa6;
}

.faq-text-link:hover{
	color: white;
}

.faq-text {
  display: none;
  padding: 10px;
  background-color: #202020;
  color: #e1caa6;
  margin-top: -3px; /* Pulls the FAQ answer 5px higher */
  margin-bottom: 10px;
  border: 1px solid black; /* Change the border color to black */
}

.faq-item {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  margin-bottom: 15px;
}

.faq-item:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
