/* FAQ Section Styles */
.faq-divider {
	border-top: 2px solid var(--primary-color);
	margin-bottom: 2rem;
}

.faq-section h2 {
	color: var(--secondary-color);
	margin-bottom: 2rem;
	font-size: 1.5rem;
}

.faq-item {
	background: var(--surface);
	margin-bottom: 1rem;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: all 0.3s;
}

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

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem;
	cursor: pointer;
	background: var(--surface);
	transition: background-color 0.3s;
}

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

.faq-question h3 {
	margin: 0;
	color: var(--secondary-color);
	font-size: 1.1rem;
	flex: 1;
}

.faq-question i {
	color: var(--primary-color);
	transition: transform 0.3s;
}

.faq-item.open .faq-question i {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s;
	background: white;
}

.faq-item.open .faq-answer {
	padding: 1.5rem;
	max-height: 500px;
}

.faq-answer p {
	margin: 0;
	line-height: 1.6;
	color: var(--text-dark);
}

@media (max-width: 768px) {
	.faq-section h2 {
		font-size: 1.3rem;
		margin-bottom: 1.5rem;
	}
}

/* Listing Options Section */
.listing-options-section h2 {
	color: var(--secondary-color);
	margin-bottom: 2rem;
	font-size: 1.5rem;
}

.listing-type-info {
	background: #f8f9fa;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 1rem;
}

.listing-type-info .type-header {
	display: flex;
	align-items: center;
	margin-bottom: 0.75rem;
}

.listing-type-info .type-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 0.75rem;
	font-size: 1.1rem;
	color: #fff;
}

.listing-type-info .type-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #333;
	margin: 0;
}

.listing-type-info .type-subtitle {
	font-size: 0.85rem;
	color: #6c757d;
	margin: 0;
}

.listing-type-info .type-description {
	color: #555;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 0.75rem;
}

.listing-type-info .type-examples {
	background: #eee;
	border-radius: 4px;
	padding: 0.75rem 1rem;
	font-size: 0.85rem;
	color: #666;
	line-height: 1.5;
}

.listing-type-info .type-examples strong {
	color: #333;
}

@media (max-width: 991px) {
	.listing-options-section {
		margin-top: 2rem;
	}
}
