/**
 * FAQ List Component Styles
 */

.faq-list-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: start;
	margin: 2rem 0;
}

.faq-list-left {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.faq-list-left-content {
	color: #333;
	line-height: 1.6;
	font-size: 1rem;
}

.faq-list-left-content h1,
.faq-list-left-content h2,
.faq-list-left-content h3,
.faq-list-left-content h4,
.faq-list-left-content h5,
.faq-list-left-content h6 {
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 1.3;
	color: #333;
}

.faq-list-left-content p {
	margin-bottom: 1rem;
}

.faq-list-left-content p:last-child {
	margin-bottom: 0;
}

.faq-list-left-content strong {
	font-weight: 600;
	color: #222;
}

.faq-list-right {
	display: flex;
	flex-direction: column;
}

.faq-list {
	margin: 0;
}

.faq-list-items {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.faq-list-item {
	padding: 1.5rem;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	background-color: #f9f9f9;
	transition: all 0.3s ease;
}

.faq-list-item:hover {
	border-color: #ccc;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-list-title {
	margin: 0 0 0.75rem 0;
	font-size: 1.125rem;
	font-weight: 600;
	color: #333;
	line-height: 1.4;
}

.faq-list-content {
	margin-bottom: 1rem;
	color: #666;
	font-size: 0.95rem;
	line-height: 1.6;
}

.faq-list-link {
	display: inline-block;
	padding: 0.5rem 1rem;
	background-color: #007bff;
	color: white;
	text-decoration: none;
	border-radius: 3px;
	font-size: 0.9rem;
	font-weight: 500;
	transition: background-color 0.3s ease;
}

.faq-list-link:hover {
	background-color: #0056b3;
	text-decoration: none;
}

.faq-list-empty {
	padding: 2rem;
	text-align: center;
	color: #999;
	font-style: italic;
	border: 1px dashed #ddd;
	border-radius: 4px;
	background-color: #fafafa;
}

/* Responsive */
@media (max-width: 1024px) {
	.faq-list-wrapper {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.faq-list-wrapper {
		gap: 1.5rem;
	}

	.faq-list-item {
		padding: 1rem;
	}

	.faq-list-title {
		font-size: 1rem;
	}

	.faq-list-content {
		font-size: 0.9rem;
	}

	.faq-list-left-content {
		font-size: 0.95rem;
	}
}
.faq-component .row_col_wrap_12 {
    padding-left: 64px;
    padding-right: 64px;
}
.faq-component .toggle>.toggle-title a {
    color: #000 !important;
    padding: 30px 70px 30px 0;
    transition: color 0.15s ease;
}
.faq-component .toggle {
    margin-bottom: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    transition: border-color 0.15s ease;
}
.faq-component .toggle > .toggle-title i:before {
    content: " ";
    top: 14px !important;
    left: 6px !important;
    margin-top: -2px !important;
    width: 14px !important;
    height: 2px !important;
    position: absolute !important;
    background-color: #888;
    transition: all 0.2s linear;
}
.faq-component .toggle > .toggle-title i:after {
    content: " ";
    /* top: 8px !important; */
    left: 12px;
    margin-top: -2px;
    width: 2px;
   height: 14px !important;
    position: absolute !important;
    background-color: #888;
    transition: all 0.2s linear;
	
}

.faq-component .toggle > .toggle-title i:after {
	top: 8px !important;
	height: 14px !important;
}

.faq-component .inner-toggle-wrap {
    padding-left: 0 !important;
    padding-top: 0 !important;
    padding-right: 0 !important;
	padding-bottom: 30px !important;
}
.faq-component .toggle.open {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.faq-component-left {
	padding-right: 130px;
}

.faq-component .faq-component-sticky {
	position: sticky;
	top: 100px;
	z-index: 10;
}

@media (max-width: 1000px) {
	.faq-component-left {
		padding-right: 0;
	}

	.faq-component .faq-component-sticky {
		position: static;
	}
}
@media (max-width: 690px) {
	.faq-component .row_col_wrap_12 {
		padding-left: 20px;
		padding-right: 20px;
	}
}
.faq-component .netctar-button.small.regular-button {
	text-decoration: none;
}