/* 헤더 섹션 */
.header_div {
	background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
	color: white;
	padding: 60px 0;
	text-align: center;
}

.header_div h1 {
	font-size: 2.5rem;
	line-height: 160%;
	margin-bottom: 10px;
	font-weight: 700;
}

.header_div p {
	font-size: 1.1rem;
	opacity: 0.9;
}

/* 컨테이너 */
.container_div {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* 카테고리 탭 */
.category-tabs {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 40px 0;
	flex-wrap: wrap;
}

.tab-btn {
	padding: 12px 30px;
	border: none;
	background: white;
	color: #666;
	border-radius: 30px;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 500;
	transition: all 0.3s;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tab-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.tab-btn.active {
	background: #ff6b00;
	color: white;
}

/* FAQ 섹션 */
.faq-section {
	display: none;
	animation: fadeIn 0.5s;
}

.faq-section.active {
	display: block;
}

@keyframes fadeIn {
	from { 
		opacity: 0; 
		transform: translateY(10px); 
	}
	to { 
		opacity: 1; 
		transform: translateY(0); 
	}
}

/* FAQ 아이템 */
.faq-item {
	background: white;
	margin-bottom: 15px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0,0,0,0.08);
	transition: all 0.3s;
}

.faq-item:hover {
	box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

/* FAQ 질문 */
.faq-question {
	padding: 20px 25px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	color: #333;
	transition: all 0.3s;
}

.faq-question:hover {
	background: #f8f9fa;
}

.faq-question.active {
	background: #fff5f0;
	color: #ff6b00;
}

.faq-icon {
	font-size: 1.5rem;
	transition: transform 0.3s;
}

.faq-question.active .faq-icon {
	transform: rotate(45deg);
}

/* FAQ 답변 */
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	padding: 0 25px;
}

.faq-answer.active {
	max-height: unset;
	padding: 20px 25px 25px; /* 상단 여백 추가 */
}

.faq-answer p {
	color: #666;
	line-height: 1.8;
	margin-bottom: 10px;
}

.faq-answer ul {
	margin-left: 20px;
	margin-top: 10px;
	color: #666;
}

.faq-answer li {
	margin-bottom: 8px;
}

/* 하이라이트 텍스트 */
.highlight {
	background: #fff3e0;
	padding: 2px 6px;
	border-radius: 4px;
	color: #ff6b00;
	font-weight: 500;
}

/* 연락처 섹션 */
.contact-section {
	background: linear-gradient(135deg, #333 0%, #222 100%);
	color: white;
	padding: 50px 0;
	margin-top: 60px;
	text-align: center;
	border-radius: 20px;
}

.contact-section h2 {
	font-size: 2rem;
	line-height: 160%;
	margin-bottom: 30px;
}

.contact-info {
	display: flex;
	justify-content: center;
	gap: 50px;
	flex-wrap: wrap;
}

.contact-item {
	text-align: center;
}

.contact-item h3 {
	font-size: 1.1rem;
	margin-bottom: 10px;
	color: #ff6b00;
}

.contact-item p {
	font-size: 1.3rem;
	font-weight: 600;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
	.header h1 {
		font-size: 2rem;
		line-height: 160%;
	}

	.category-tabs {
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding: 0 10px;
	}

	.tab-btn {
		flex-shrink: 0;
		padding: 10px 15px;
		font-size: 0.85rem;
		min-width: fit-content;
	}

	.faq-question {
		padding: 15px 20px;
		font-size: 0.95rem;
	}

	.contact-info {
		flex-direction: column;
		gap: 30px;
	}
}