/* ============================================
           STYLE 1: CLASSIC ACCORDION
 ============================================ */
 :root {
	--faq-primary-yellow: #FFDD22;
	--faq-dark-text: #1a1a1a;
	--faq-gray-text: #6c757d;
	--faq-light-bg: #f8f9fa;
}
#hero{
    margin-top: 80px; 
  }
.hero_sec_flex{
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-around;
}
/* Style Switcher */
.style-switcher {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 9999;
	background: white;
	border-radius: 15px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	padding: 15px;
	max-width: 250px;
}

.style-switcher h6 {
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.style-btn {
	display: block;
	width: 100%;
	padding: 10px 15px;
	margin-bottom: 8px;
	border: 2px solid #e0e0e0;
	background: white;
	border-radius: 8px;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: left;
}

.style-btn:hover {
	border-color: var(--faq-primary-yellow);
	background: #fffef5;
	transform: translateX(5px);
}

.style-btn.active {
	background: var(--faq-primary-yellow);
	border-color: var(--faq-primary-yellow);
	color: white;
}

.style-btn i {
	margin-right: 8px;
}

/* Hide all styles by default */
.faq-style {
	display: none;
}

.faq-style.active {
	display: block;
}

/* Common Header */
.faq-header {
	padding: 60px 0 40px;
	text-align: center;
}

.faq-title {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 20px;
}

.faq-subtitle {
	font-size: 1.1rem;
	color: var(--faq-gray-text);
	max-width: 910px;
	margin: 0 auto 30px;
}

.email-link {
	color: #0066cc;
	text-decoration: none;
	font-weight: 600;
}

.email-link:hover {
	text-decoration: underline;
}
.style-1 .faq-header {
	/*background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);*/
}

.style-1 .faq-item {
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 15px;
	margin-bottom: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.style-1 .faq-item:hover {
	border-color: var(--faq-primary-yellow);
	box-shadow: 0 5px 20px rgba(255, 193, 7, 0.2);
}

.style-1 .faq-question {
	padding: 25px 30px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 1.1rem;
	background: white;
	transition: all 0.3s ease;
}

.style-1 .faq-question:hover {
	background: #fffef5;
}

.style-1 .faq-question.active {
	background: var(--faq-primary-yellow);
	color: black;
}

.style-1 .faq-icon {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f0f0;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.style-1 .faq-question.active .faq-icon {
	background: white;
	color: var(--faq-primary-yellow);
	transform: rotate(180deg);
}

.style-1 .faq-answer {
	padding: 0 30px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s ease;
}

.style-1 .faq-answer.active {
	padding: 25px 30px;
	max-height: 500px;
}
/* Search Box */
.faq-search {
	max-width: 600px;
	margin: 30px auto;
	position: relative;
}

.faq-search input {
	width: 100%;
	padding: 18px 50px 18px 25px;
	border: 2px solid #e0e0e0;
	border-radius: 50px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.faq-search input:focus {
	outline: none;
	border-color: var(--faq-primary-yellow);
	box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1);
}

.faq-search i {
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--faq-gray-text);
	font-size: 1.2rem;
}

@media (max-width: 767px){
   #hero 
   {
	 margin-top:109px;
	 height: auto;
	 text-align: center;
	 padding-bottom: 0px;
   } 
   .div-center{
		width:105%;
	}

	input,
	input::-webkit-input-placeholder {
		font-size: 20px;
		line-height: 3;
	}
	.fa-search:before {
		content: "\f002";
		font-size: 23px;
	}
	.accordion-button {
		color: #44475B !important;
		font-size: 18px;
	}
	.accordion-button:not(.collapsed){
	   font-size: 18px;   
	}
	.md-h-1060 {
		height: auto !important;
	}
	
	.style-switcher {
		top: 10px;
		right: 10px;
		padding: 10px;
		max-width: 200px;
	}
	
	.style-btn {
		font-size: 0.75rem;
		padding: 8px 10px;
	}
	
	.faq-title {
		font-size: 2rem;
	}
	
	.faq-subtitle {
		font-size: 1rem;
	}
	
	.style-6 .faq-container {
		grid-template-columns: 1fr;
	}
	
	.faq-question {
		font-size: 1rem !important;
		padding: 20px !important;
	}
	
	.faq-answer {
		padding: 0 20px !important;
	}
	
	.faq-answer.active {
		padding: 20px !important;
	}
}