/*css of section questions*/


.container-questions {
	max-width: 800px;
	margin: auto;
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .title {
	text-align: center;
	margin-bottom: 30px;
  }
  
  .title h4 {
	font-weight: bold;
	color: #0056b3;
  }
  
  /*.accordion-item {
	border-bottom: 1px solid #ccc;
  }*/
  
  .accordion-button {
	background-color: #6689cb;
	color: white;
	padding: 15px;
	margin:3px;
	font-weight: bold;
	width: 100%;
	text-align: left;
	border: none;
	border-radius: 10px;
	outline: none;
	cursor: pointer;
	transition: background-color 0.3s;
  }
  
  .accordion-button:hover {
	background-color: #3a63a8;
  }
  
  .accordion-content {
	max-height: 0;
	overflow: hidden;
	background-color: white;
	color: black;
	font-size: 18px;
	font-weight: bold;
	padding: 0 20px;
	transition: max-height 0.4s ease, padding 0.4s ease;
  }
  
  .accordion-content.open {
	padding: 20px;
	max-height: 300px;
  }

 