/* ============================== FAQ Section ============================== */

.faq-section {
	padding: 80px 20px;
	background-color: #f8fafc;
}

.faq-section .container {
	/*max-width: 1100px;*/
	margin: 0 auto;
}

.faq-header {
	text-align: center;
	margin-bottom: 50px;
}

/*
.faq-header h2 {
	font-size: 34px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 10px;
}
*/

.faq-header p {
	font-size: 16px;
	color: #64748b;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ============================== FAQ Items ============================== */

.faq-item {
	background: #ffffff;
	border-radius: 14px;
	margin-bottom: 18px;
	padding: 0;
	border: 1px solid #c8d2de;
	transition: all 0.3s ease;
	overflow: hidden;
}

.faq-item[open] {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	border-color: #cbd5e1;
}

/* ============================== Summary (Question) ============================== */

.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 22px 24px;
	position: relative;
	display: flex;
	align-items: center; /* ensures text stays vertically aligned */
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary h3 {
	font-size: 18px;
	font-weight: 600;
	color: #0f172a;
	margin: 0;
	line-height: 1.5;
	padding-right: 30px;
}

/* Arrow Indicator */
.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	font-weight: 600;
	color: #2563eb;
	transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
	/*content: "−";*/
	transform: translateY(-50%) rotate(45deg);
}

/* ============================== FAQ Content ============================== */

.faq-content {
	padding: 0 24px 24px 24px;
	animation: fadeIn 0.3s ease-in-out;
}

.faq-summary {
	font-size: 16px;
	margin-bottom: 16px;
	line-height: 1.6;
}

.faq-summary strong {
	color: #0f172a;
	font-weight: 600;
}

.faq-content p {
	font-size: 15px;
	color: #475569;
	line-height: 1.7;
	margin-bottom: 14px;
}

.faq-content ul {
	padding-left: 20px;
	margin-bottom: 16px;
}

.faq-content ul li {
	margin-bottom: 8px;
	font-size: 15px;
	color: #334155;
}

/* ============================== Animation ============================== */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ============================== Hover Effect ============================== */
.faq-item:hover {
	border-color: #94a3b8;
}

/* ============================== Responsive ============================== */
@media (max-width: 768px) {
	.faq-section {
		padding: 60px 15px;
	}

	.faq-header h2 {
		font-size: 26px;
	}

	.faq-item summary h3 {
		font-size: 16px;
	}

	.faq-content p,
	.faq-content ul li {
		font-size: 14px;
	}
}