/* Custom Styles */
.custom-quick-menu {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 9999;
}

/* Header navigation */
.custom-header-nav .wp-block-navigation-item__content {
	font-weight: 500 !important;
	padding-left: 6px;
	padding-right: 6px;
}

.custom-header-nav .wp-block-navigation__container {
	gap: 24px !important;
}

/* Remove outline from mobile hamburger menu button on click */
.wp-block-navigation__responsive-container-open,
.wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-container-toggle,
.wp-block-navigation button:focus:not(:focus-visible),
.wp-block-navigation__responsive-container button:focus:not(:focus-visible),
.custom-header-nav ~ * button:focus:not(:focus-visible) {
	outline: none !important;
	box-shadow: none !important;
}

/* Remove outline from navigation menu items on click */
.wp-block-navigation-item__content:focus:not(:focus-visible),
.wp-block-navigation__responsive-container .wp-block-navigation-item__content:focus:not(:focus-visible),
.wp-block-navigation a:focus:not(:focus-visible),
.wp-block-navigation__responsive-container a:focus:not(:focus-visible) {
	outline: none !important;
	box-shadow: none !important;
}

/* Keep outline for keyboard navigation (accessibility) */
.wp-block-navigation button:focus-visible,
.wp-block-navigation__responsive-container button:focus-visible,
.wp-block-navigation-item__content:focus-visible,
.wp-block-navigation__responsive-container .wp-block-navigation-item__content:focus-visible,
.wp-block-navigation a:focus-visible,
.wp-block-navigation__responsive-container a:focus-visible {
	outline: 2px solid currentColor !important;
	outline-offset: 2px !important;
}

/* Header sticky/fixed on scroll */
.custom-sticky-header {
	position: sticky !important;
	top: 0 !important;
	z-index: 1000 !important;
	background-color: #ffffff !important;
	border-bottom: 1px solid #e0e0e0 !important;
}

/* Fallback for different header structures */
header[role="banner"],
.wp-site-blocks > header,
header.wp-block-template-part {
	position: sticky !important;
	top: 0 !important;
	z-index: 1000 !important;
	background-color: #ffffff !important;
	

}

header[role="banner"] .wp-block-group.alignfull,
.wp-site-blocks > header .wp-block-group.alignfull,
header.wp-block-template-part .wp-block-group.alignfull,
.custom-sticky-header {
	background-color: #ffffff !important;
}

.custom-floating-button {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #0f5b56;
	color: #ffffff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	font-size: 24px;
	line-height: 1;
}

.custom-floating-button:hover {
	background-color: #0a4743;
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.custom-floating-button:active {
	transform: scale(0.95);
}

/* Modal Styles */
.custom-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10000;
	align-items: center;
	justify-content: center;
}

.custom-modal.active {
	display: flex;
}

.modal-content {
	background-color: #ffffff;
	padding: 25px 30px;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	max-width: 320px;
	width: auto;
	text-align: center;
	position: relative;
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: #666;
	line-height: 1;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-close:hover {
	color: #000;
}

.modal-title {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 20px 0;
	color: #333;
}

.phone-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.phone-number {
	font-size: 22px;
	font-weight: bold;
	color: #0f5b56;
	word-break: break-all;
	margin: 0;
}

.copy-button {
	background: none;
	border: none;
	color: #666;
	cursor: pointer;
	padding: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	border-radius: 4px;
	flex-shrink: 0;
}

.copy-button:hover {
	color: #333;
	background-color: #f5f5f5;
}

.copy-button:active {
	transform: scale(0.95);
}

.copy-button.copied {
	color: #28a745;
}

.copy-button.copied:hover {
	background-color: #f0f9f4;
}

/* Banner Styles */
.custom-banner-section {
	margin-top: 0;
	margin-bottom: 0;
}

.custom-banner {
	background: linear-gradient(to right, #d5f5d7, #bff2ff);
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-banner-title {
	margin: 0 0 20px 0;
	font-size: 32px;
	font-weight: 700;
	color: #0f5b56;
	text-align: center;
}

.custom-banner-description {
	font-size: 18px;
	line-height: 1.6;
	color: #111;
	text-align: center;
    max-width: 1200px;
    font-weight: 400;
}

.custom-banner-button .wp-block-button__link {
	background-color: #ffffff;
	color: #333333;
	border: none;
	padding: 18px 40px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

.custom-banner-button .wp-block-button__link:hover {
	background-color: #f5f5f5;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
}

.custom-banner-button .wp-block-button__link:active {
	transform: translateY(0);
}

/* Mobile Styles */
@media (max-width: 768px) {
	.custom-quick-menu {
		bottom: 20px;
		right: 20px;
	}

	.custom-floating-button {
		width: 56px;
		height: 56px;
		font-size: 22px;
	}

	.custom-banner {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.custom-banner-title {
		font-size: 22px !important;
	}

	.custom-banner-description {
		font-size: 14px;
		margin: 15px 0 25px 0;
	}

	.custom-banner-button .wp-block-button__link {
		padding: 12px 30px;
		font-size: 14px;
	}

}

/* Footer Styles */
.custom-footer {
	background-color: #f5f5f5;
	border-top: 1px solid #e0e0e0;
	text-align: center;
}

.custom-footer .wp-block-group {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.custom-footer .wp-block-group > * {
	text-align: center;
}

.custom-footer-logo {
	margin: 0 auto 20px auto;
	text-align: center;
	display: block;
}

.custom-footer-logo img {
	height: auto;
	max-width: 100%;
}

.custom-footer p {
	margin: 0;
	line-height: 1.6;
	text-align: center !important;
}

.custom-footer a {
	color: inherit;
	text-decoration: none;
}

.custom-footer a:hover {
	text-decoration: underline;
}

.custom-footer-separator {
	border-top: 1px solid #d0d0d0 !important;
	border-bottom: none !important;
	border-left: none !important;
	border-right: none !important;
	width: 100%;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	height: 1px;
}

.custom-footer-copyright {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.custom-footer-contact-label {
	font-weight: 700;
}

.custom-footer-email {
	cursor: pointer;
}

/* Blog List Styles */
.wp-block-query .wp-block-post-template .custom-post-card {
	border: 1px solid #e0e0e0;
	padding: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}

.wp-block-query .wp-block-post-template .custom-post-card .wp-block-post-featured-image {
	height: 200px;
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 100%;
}

.wp-block-query .wp-block-post-template .custom-post-card .wp-block-post-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wp-block-query .wp-block-post-template .custom-post-card .wp-block-post-title {
	padding-left: 12px;
	padding-right: 12px;
}

.wp-block-query .wp-block-post-template .custom-post-card .wp-block-post-date {
	padding-left: 12px;
	padding-right: 12px;
}

.wp-block-query .wp-block-post-template .custom-post-card .wp-block-post-excerpt {
	padding:0 12px 12px 12px;
}

.wp-block-query .wp-block-post-template .custom-post-card .wp-block-post-excerpt p {
	padding: 0;
	padding-bottom: 12px;
	font-size: 15px;
}

/* Medical Info Table Styles */
.custom-table-wrapper,
.custom-table-wrapper * {
	box-sizing: border-box;
}

.custom-table-wrapper {
	margin: 30px 0;
	width: 100% !important;
	overflow-x: hidden !important;
	overflow: hidden !important;
	display: block;
}

/* Ensure parent containers don't cause overflow */
body.single .wp-block-post-content .custom-table-wrapper,
.wp-block-post-content .custom-table-wrapper,
.is-layout-constrained .custom-table-wrapper {
	width: 100% !important;
	overflow-x: hidden !important;
	display: block !important;
}

.medical-info-table {
	border-collapse: collapse;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 16px;
	border: 1px solid #e0e0e0;
	table-layout: auto;
	box-sizing: border-box;
}

.medical-info-table thead tr {
	background-color: #f8f9fa;
	border-bottom: 2px solid #2e7d32;
}

.medical-info-table th {
	padding: 15px;
	text-align: center;
	font-weight: 700;
	color: #333;
	word-wrap: break-word;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal !important;
	box-sizing: border-box;
}

.medical-info-table td {
	padding: 15px;
	border-bottom: 1px solid #eee;
	text-align: center;
	color: #444;
	word-wrap: break-word;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal !important;
	box-sizing: border-box;
}

.medical-info-table td.item-name {
	text-align: center;
	font-weight: 500;
	padding-left: 20px;
}

.medical-info-table td.price {
	font-weight: 600;
}

.medical-info-table td.status {
	font-weight: 800;
	font-size: 1.1rem;
}

.medical-info-table td.status.apply {
	color: #2e7d32;
}

.medical-info-table td.status.none {
	color: #d32f2f;
}

/* Tablet responsive styles */
@media (max-width: 768px) {
	.custom-table-wrapper {
		margin: 20px 0;
		width: 100% !important;
		max-width: 100% !important;
		overflow-x: hidden !important;
		display: block;
	}
	
	.medical-info-table {
		font-size: 14px;
		width: 100% !important;
		max-width: 100% !important;
		table-layout: fixed;
		display: table;
	}
	
	.medical-info-table th,
	.medical-info-table td {
		padding: 10px 8px;
		width: auto;
		min-width: 0;
	}
	
	.medical-info-table td.item-name {
		padding-left: 10px;
	}
}

/* Mobile responsive styles */
@media (max-width: 480px) {
	.custom-table-wrapper {
		margin: 15px 0;
		width: 100% !important;
		max-width: 100% !important;
		overflow-x: hidden !important;
		display: block;
	}
	
	.medical-info-table {
		font-size: 12px;
		width: 100% !important;
		max-width: 100% !important;
		table-layout: fixed;
		display: table;
	}
	
	.medical-info-table th,
	.medical-info-table td {
		padding: 8px 4px;
		width: auto;
		min-width: 0;
	}
	
	.medical-info-table td.item-name {
		padding-left: 8px;
		font-size: 11px;
	}
	
	.medical-info-table td.status {
		font-size: 0.9rem;
	}
	
	.medical-info-table th {
		font-size: 11px;
	}
}



/* ========================================
   블로그 상세페이지 - TOC (목차) 스타일
   ======================================== */

/* EZ TOC 기본 오버라이드 */
#ez-toc-container {
	background: white !important;
	border: 1px solid #e5e7eb !important;
	border-radius: 0.75rem !important;
	padding: 1.25rem !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
	border-left: 3px solid #0f5b56 !important;
	width: 100% !important;
	margin-bottom: 2rem !important;
}

#ez-toc-container .ez-toc-title-container {
	margin-bottom: 0.75rem !important;
}

#ez-toc-container .ez-toc-title {
	font-size: 0.9rem !important;
	font-weight: 700 !important;
	color: #111827 !important;
}

#ez-toc-container .ez-toc-list {
	font-size: 0.85rem !important;
}

#ez-toc-container .ez-toc-list a {
	color: #4b5563 !important;
	text-decoration: none !important;
	transition: color 0.2s, padding-left 0.2s !important;
	display: block !important;
	padding: 0.3rem 0 !important;
	line-height: 1.5 !important;
}

#ez-toc-container .ez-toc-list a:hover {
	color: #0f5b56 !important;
}

/* TOC 커스텀 스크롤바 */
#ez-toc-container::-webkit-scrollbar {
	width: 4px;
}

#ez-toc-container::-webkit-scrollbar-track {
	background: #f3f4f6;
	border-radius: 2px;
}

#ez-toc-container::-webkit-scrollbar-thumb {
	background: #0f5b56;
	border-radius: 2px;
	opacity: 0.5;
}

/* TOC 프로그레스 바 */
.toc-progress-bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, #0f5b56, #0a8f7f);
	border-radius: 3px 3px 0 0;
	transition: width 0.15s ease-out;
	z-index: 10;
}

/* TOC 활성 항목 */
#ez-toc-container .ez-toc-list li.toc-active > a {
	color: #0f5b56 !important;
	font-weight: 600 !important;
	border-left: 2px solid #0f5b56;
	padding-left: 0.5rem !important;
	background: rgba(15, 91, 86, 0.04);
}

#ez-toc-container .ez-toc-list li.toc-sub-active > a {
	color: #0a4743 !important;
	font-weight: 500 !important;
	border-left: 2px solid #0a8f7f;
	padding-left: 0.5rem !important;
}

/* 서브 아이템: 기본 접힘 → active 시 펼침 */
#ez-toc-container .ez-toc-list > li > ul {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

#ez-toc-container .ez-toc-list > li.toc-active > ul {
	max-height: 500px;
}

/* 데스크톱 ≥1280px: 고정 좌측 TOC */
@media (min-width: 1280px) {
	#ez-toc-container {
		position: fixed !important;
		top: 200px !important;
		left: 20px !important;
		width: 230px !important;
		max-height: calc(100vh - 240px) !important;
		overflow-y: auto !important;
		z-index: 30 !important;
		margin-bottom: 0 !important;
		animation: tocSlideIn 0.5s ease-out both;
	}
}

@media (min-width: 1600px) {
	#ez-toc-container {
		left: calc(50% - 740px) !important;
		width: 270px !important;
	}
}

@media (min-width: 1920px) {
	#ez-toc-container {
		width: 280px !important;
	}
}

/* TOC 슬라이드인 애니메이션 */
@keyframes tocSlideIn {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* 푸터 근접 시 페이드아웃 */
#ez-toc-container.toc-near-footer {
	opacity: 0;
	transform: translateX(-20px);
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ========================================
   블로그 상세페이지 - 상담 사이드바 스타일
   ======================================== */

.consult-sidebar {
	display: none;
}

@media (min-width: 1440px) {
	.consult-sidebar {
		display: block;
		position: fixed;
		top: 200px;
		right: calc(50% - 710px);
		width: 260px;
		z-index: 30;
		animation: sidebarSlideIn 0.5s ease-out 0.4s both;
	}
}

@media (min-width: 1600px) {
	.consult-sidebar {
		width: 270px;
	}
}

@media (min-width: 1920px) {
	.consult-sidebar {
		width: 280px;
	}
}

@keyframes sidebarSlideIn {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.consult-sidebar.sidebar-near-footer {
	opacity: 0;
	transform: translateX(20px);
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.consult-badge {
	background: #0f5b56;
	color: white;
	text-align: center;
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	border-radius: 0.75rem 0.75rem 0 0;
}

.consult-inner {
	background: white;
	border: 1px solid #e5e7eb;
	border-top: none;
	border-radius: 0 0 0.75rem 0.75rem;
	padding: 1.25rem;
	box-sizing: border-box;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.consult-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #111827;
	line-height: 1.5;
	margin-bottom: 0.5rem;
}

.consult-desc {
	font-size: 0.825rem;
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.consult-btn-primary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	box-sizing: border-box;
	padding: 0.75rem 1rem;
	background: linear-gradient(135deg, #0f5b56, #0a8f7f);
	color: white !important;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 0.5rem;
	text-decoration: none !important;
	transition: opacity 0.2s, transform 0.2s;
	box-shadow: 0 2px 6px rgba(15, 91, 86, 0.3);
}

.consult-btn-primary:hover {
	opacity: 0.9;
	transform: translateY(-1px);
	color: white !important;
}

.consult-btn-primary svg {
	flex-shrink: 0;
}

.consult-phone-main {
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	color: #0f5b56;
	margin: 0.5rem 0 0.75rem;
	letter-spacing: 0.02em;
}

.consult-btn-kakao {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	box-sizing: border-box;
	padding: 0.65rem 1rem;
	background: #FEE500;
	color: #3C1E1E !important;
	font-size: 0.85rem;
	font-weight: 600;
	border-radius: 0.5rem;
	text-decoration: none !important;
	transition: background 0.2s, transform 0.2s;
}

.consult-btn-kakao:hover {
	background: #F5DC00;
	transform: translateY(-1px);
	color: #3C1E1E !important;
}

.consult-btn-kakao svg {
	flex-shrink: 0;
}

.consult-divider {
	border: none;
	border-top: 1px solid #e5e7eb;
	margin: 1rem 0;
}

.consult-partner {
	text-align: center;
	margin-bottom: 0.75rem;
}

.consult-partner-label {
	display: block;
	font-size: 0.8rem;
	color: #9ca3af;
	margin-bottom: 0.5rem;
}

.consult-btn-partner {
	display: inline-block;
	padding: 0.45rem 1rem;
	border: 1px solid #0f5b56;
	color: #0f5b56 !important;
	font-size: 0.8rem;
	font-weight: 600;
	border-radius: 0.375rem;
	text-decoration: none !important;
	transition: background 0.2s, color 0.2s;
}

.consult-btn-partner:hover {
	background: #0f5b56;
	color: white !important;
}

.consult-hours {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding-top: 0.25rem;
}

.consult-hours svg {
	color: #9ca3af;
	flex-shrink: 0;
}

.consult-hours-label {
	display: block;
	font-size: 0.7rem;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.consult-hours-time {
	display: block;
	font-size: 0.8rem;
	color: #4b5563;
	font-weight: 500;
}

/* ========================================
   FAQ 아코디언 스타일
   ======================================== */

.consult-faq-list {
	margin: 1.5rem 0;
}

.consult-faq-item {
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	margin-bottom: 0.75rem;
	overflow: hidden;
}

.consult-faq-item summary {
	padding: 1rem 1.25rem;
	font-weight: 600;
	color: #111827;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: background 0.2s;
}

.consult-faq-item summary::-webkit-details-marker {
	display: none;
}

.consult-faq-item summary::before {
	content: 'Q.';
	color: #0f5b56;
	font-weight: 700;
	flex-shrink: 0;
}

.consult-faq-item summary::after {
	content: '';
	margin-left: auto;
	width: 0.5rem;
	height: 0.5rem;
	border-right: 2px solid #9ca3af;
	border-bottom: 2px solid #9ca3af;
	transform: rotate(45deg);
	transition: transform 0.2s;
	flex-shrink: 0;
}

.consult-faq-item[open] summary::after {
	transform: rotate(-135deg);
}

.consult-faq-item summary:hover {
	background: #f9fafb;
}

.consult-faq-answer {
	padding: 0 1.25rem 1rem 1.25rem;
	color: #374151;
	line-height: 1.7;
	font-size: 0.95rem;
}

/* ========================================
   모바일 CTA 바 스타일
   ======================================== */

.mobile-cta-bar {
	display: none;
}

@media (max-width: 768px) {
	.mobile-cta-bar {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 9999;
		box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
		padding-bottom: env(safe-area-inset-bottom, 0);
	}

	.mobile-cta-btn {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		padding: 0.875rem 1rem;
		text-decoration: none !important;
		font-size: 0.9rem;
		font-weight: 600;
		transition: opacity 0.2s;
	}

	.mobile-cta-btn:active {
		opacity: 0.85;
	}

	.mobile-cta-phone {
		background: #0f5b56;
		color: white !important;
	}

	.mobile-cta-phone:hover {
		color: white !important;
	}

	.mobile-cta-kakao {
		background: #FEE500;
		color: #3C1E1E !important;
	}

	.mobile-cta-kakao:hover {
		color: #3C1E1E !important;
	}

	body {
		padding-bottom: 56px;
	}

	.custom-quick-menu {
		bottom: calc(56px + 1rem) !important;
	}
}

/* FAQ Section Styles */
.faq-container {
	max-width: auto;
	margin: 40px auto;
	font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #333;
	line-height: 1.8;
}

.faq-title {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 25px;
	color: #2e7d32;
	border-left: 5px solid #2e7d32;
	padding-left: 15px;
}

.faq-item {
	background-color: #f9f9f9;
	border-radius: 8px;
	margin-bottom: 15px;
	padding: 20px;
	border: 1px solid #eee;
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	border-color: #d1d1d1;
}

.faq-question {
	font-size: 1.1rem;
	font-weight: 600;
	color: #222;
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
}

.faq-question::before {
	content: "Q.";
	color: #2e7d32;
	margin-right: 12px;
	font-weight: 800;
	font-size: 1.2rem;
}

.faq-answer {
	font-size: 1rem;
	color: #555;
	padding-left: 32px;
}

.faq-answer strong {
	color: #d32f2f;
}

.faq-footer {
	margin-top: 30px;
	padding: 15px;
	background-color: #e8f0fe;
	border-radius: 6px;
	font-size: 0.95rem;
	text-align: center;
}

/* FAQ Responsive Styles */
@media (max-width: 768px) {
	.faq-container {
		margin: 30px auto;
	}
	
	.faq-title {
		font-size: 1.2rem;
		padding-left: 12px;
	}
	
	.faq-item {
		padding: 15px;
	}
	
	.faq-question {
		font-size: 1rem;
	}
	
	.faq-answer {
		font-size: 0.95rem;
		padding-left: 28px;
	}
}

@media (max-width: 480px) {
	.faq-container {
		margin: 20px auto;
	}
	
	.faq-title {
		font-size: 1.1rem;
		padding-left: 10px;
		margin-bottom: 20px;
	}
	
	.faq-item {
		padding: 12px;
		margin-bottom: 12px;
	}
	
	.faq-question {
		font-size: 0.95rem;
	}
	
	.faq-question::before {
		font-size: 1.1rem;
		margin-right: 10px;
	}
	
	.faq-answer {
		font-size: 0.9rem;
		padding-left: 26px;
	}
	
	.faq-footer {
		font-size: 0.85rem;
		padding: 12px;
	}
}

