@charset "utf-8";
/* CSS Document */

/* Reset default margins and paddings for all elements */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Style for the main FAQ container */
.faq-container {
  /*max-width: 800px; /* Limit the width for better readability */
  margin: 50px auto; /* Center the container and add vertical spacing */
  padding: 0px;
  color: #1f1f1f; /* Base text color */
}

.faq-container h5 {
	margin-bottom:0px;
	margin-top:.75em;
	padding-bottom:14px;
	border-bottom:none;
	/*border-bottom:solid 1px #dbdbdb;*/
}

/* Style for the main title */
.faq-container h1 {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50; /* Dark blue color for the title */
}

/* Style for each FAQ item */
.faq-item {
  	border-bottom: 1px solid #dbdbdb; /* Light gray border between items */
	border-left: 1px solid #dbdbdb;
	border-right: 1px solid #dbdbdb;
	overflow: hidden; /* Hide overflowing content */
	font-family: 'Tajawal', sans-serif;
	font-size:18px;
	line-height:1.3;
}

.faq-item:first-of-type {
	border-radius:8px 8px 0px 0px;
}

.faq-item:last-of-type {
	border-radius:0px 0px 8px 8px;
}

.faq-item p {
	margin:0;
	font-family: 'Tajawal', sans-serif;
	padding-right:50px;
	color:#1f1f1f;
}

/* Style for the question buttons */
.faq-question {
  /*background-color: #ecf0f1; /* Light gray background */
  width: 100%;
  padding: 20px;
  text-align: left;
  font-size: 18px;
	font-weight:600;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease; /* Smooth background transition on hover */
background: #efefef; /* Old browsers */
background: -moz-linear-gradient(top, #efefef 2%, #fcfcfc 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #efefef 2%,#fcfcfc 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #efefef 2%,#fcfcfc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efefef', endColorstr='#fcfcfc',GradientType=0 ); /* IE6-9 */
}

/* Hover effect for question buttons */
.faq-question:hover {
  background: #d9e7eb; /* light blue gray on hover */
}

/* Style for the arrow icon */
.faq-question .arrow {
  position: absolute;
  right: 20px;
	top:50%;
	transform: translateY(-50%);
  transition: transform 0.3s ease; /* Smooth rotation transition */
	color:#01617a;
}

/* Rotate the arrow when the question is active (expanded) */
.faq-question.active .arrow {
  transform: rotate(180deg); /* Rotate arrow 180 degrees */
}

/* Style for the answer sections */
.faq-answer {
  max-height: 0; /* Initially hide the answer */
  overflow: hidden;
  transition: max-height 0.3s ease; /* Smooth transition for expanding */
  background-color: #fff; /* White background for answers */
	font-family: 'Tajawal', sans-serif;
	color:#1f1f1f;
	font-size:18px;
	border-top:#000;
}

/* Style for the answer text */
.faq-answer p {
  padding: 20px;
  font-size: 18px;
  line-height: 1.5; /* Increase line height for better readability */
  color: #151515; /* Slightly lighter text color for answers */
	border-top:solid 1px #dbdbdb;
}

/* Harmonious color palette for the body background */
body {
  background-color: #fff;/* #f5f7fa; Very light blue-gray background */
}

