/* TEPP FAQ Accordion Frontend Fallback */

.tepp-faq-accordion-container {
	margin-bottom: 30px;
}

.tepp-faq-accordion-container .faq {
	margin-bottom: 10px;
}

.tepp-toggle {
	background-color: transparent;
	margin: 0 0 10px;
	border-radius: 4px;
	position: relative;
}

.tepp-toggle > label {
	display: block;
	cursor: pointer;
	padding: 12px 40px 12px 15px;
	background: #f4f4f4; 
	color: #222529;
	font-weight: 600;
	font-size: 15px;
	border-radius: 4px;
	transition: all 0.3s ease;
	position: relative;
	margin: 0;
	user-select: none;
}

.tepp-toggle.active > label {
	background: #fff;
	color: #2A548F; /* TEPP Primary Color */
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tepp-toggle-content {
	display: none;
	background: #fff;
	color: #777;
	border: 1px solid #e1e1e1;
	border-top: none;
	border-radius: 0 0 4px 4px;
	line-height: 24px;
}

.tepp-inner-padding {
	padding: 20px !important;
}

.tepp-toggle-content p {
    margin-bottom: 15px;
}

.tepp-toggle-content p:last-child {
    margin-bottom: 0;
}
