h3 {
	text-align: center;
}
.faq-blocks {
	margin: 50px auto 3em !important;
/*	display: flex;
	gap: 20px;
*/
}

.faq-content {
/*	width: 50%;*/
	background: #fff;
	padding: 5px 30px 30px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.faq-content ul {
	list-style-type: none;
}

.faq-item {
	border-bottom: 1px solid #ddd;
}

.faq-question {
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	font-size: 1.1rem;
	padding: 20px 20px 20px 10px;
	font-weight: bold;
	cursor: pointer;
	position: relative;
	color: var(--primary-color);
}

.faq-question::after {
	content: '＋';
	position: absolute;
	right: 10px;
	font-size: 1.2rem;
	transition: transform 0.3s;
	color: var(--index-color);
}

.faq-question.active::after {
	content: '－';
}

.service-faq .faq-question {
	color: var(--index-color);
}

.faq-answer {
	color: #444;
	font-size: 0.95rem;
	overflow: hidden;
	transition: height 0.4s ease, padding 0.4s ease;
	padding: 0 15px;
	height: 0;
}

.faq-answer p {
	padding: 15px;
	color : var(--theme-text-color);
	background: var(--section-bg-color);
	margin-block-end: 1em !important;
}

.service-faq .faq-answer p {
	color: var(--primary-color);
}

.faq-answer.open {
	margin-bottom: 10px;
}

.contact-content {
	margin: 4em auto !important;
	padding: 20px;
	background: var(--section-bg-color);
	border-left: 5px solid var(--primary-color);
	border-radius: 4px;
}

.contact-box h2 {
	margin-top: 0;
	font-size: 1.3rem;
}

.btn {
	display: inline-block;
	margin-top: 10px;
	background: var(--primary-color);
	color: white;
	padding: 10px 20px;
	border-radius: 4px;
	text-decoration: none;
	transition: background 0.3s;
}

.btn:hover {
	color: white;
	opacity: 0.9;
}
