/* ======================
   RESET & BASE STYLES
   ====================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}
.faq-container {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 2rem;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-header {
	text-align: center;
	margin-bottom: 3rem;
}

.faq-header h1 {
	font-size: 2.5rem;
	color: #2a3c54;
	margin-bottom: 1rem;
}

.faq-header p {
	color: #666;
	font-size: 1.1rem;
}

.faq-categories {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.category-btn {
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 30px;
	background: #f5f7fa;
	color: #2a3c54;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
	background: #2196f3;
	color: #fff;
}

.faq-list {
	display: grid;
	gap: 1rem;
}

.faq-item {
	background: #f8f9fa;
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-question {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 500;
	color: #2a3c54;
}

.faq-question::after {
	content: '\f107';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	background: #fff;
}

.faq-item.active .faq-answer {
	padding: 1.5rem;
	max-height: 500px;
}

.faq-search {
	margin-bottom: 2rem;
	position: relative;
}

.faq-search input {
	width: 100%;
	padding: 1rem 1.5rem;
	padding-left: 3rem;
	border: 2px solid #eee;
	border-radius: 30px;
	font-size: 1rem;
}

.faq-search i {
	position: absolute;
	left: 1.2rem;
	top: 50%;
	transform: translateY(-50%);
	color: #666;
}

@media (max-width: 768px) {
	.faq-container {
		margin: 1rem;
		padding: 1rem;
	}

	.faq-header h1 {
		font-size: 2rem;
	}
}