.faq-question {
	position: relative;
	width: 100%;
	padding: 15px;
	font-size: 14px;
	background-color: #6E8CB7; /* Button color */
	color: var(--bg-color);
	border: none;
	cursor: pointer;
	text-align: left;
	transition: background-color 0.3s;
	border-radius: 5px;
	margin-block: 0.3rem;
  }
  

  .faq-question::after {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg); /* Down arrow */
	width: 10px;
	height: 10px;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	transition: transform 0.3s ease;
  }

  
  .faq-question.active::after {
	transform: translateY(-50%) rotate(135deg); /* Turns into an 'X' or cross */
	border-right: 2px solid white;
	border-bottom: 2px solid white;
  }
  
  .faq-answer {
	padding: 15px;
	background-color: #f9f9f9;
	display: none; /* Hidden by default */
	font-size: 15px;
	color: #333;
	border-top: 1px solid #ddd;
  }
  
  .button-row{
	display: grid;
	grid-template-columns: 0.25fr 0.25fr 0.25fr;
  }

  .button-row img{
	width: 60px;
  }



@media (min-width: 1200px) {
    .button-row {
		display: grid;
		grid-template-columns: 0.1fr 0.1fr 0.1fr;
}}