/* ======================
   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;
}
.help-center-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);
}

.help-header {
	text-align: center;
	margin-bottom: 3rem;
}

.help-header h1 {
	font-size: 2.5rem;
	color: #2a3c54;
	margin-bottom: 1rem;
}

.help-header p {
	color: #666;
	font-size: 1.1rem;
}

.search-container {
	max-width: 600px;
	margin: 0 auto 3rem;
	position: relative;
}

.search-container input {
	width: 100%;
	padding: 1rem 3rem;
	border: 2px solid #eee;
	border-radius: 30px;
	font-size: 1.1rem;
	transition: border-color 0.3s ease;
}

.search-container input:focus {
	border-color: #2196f3;
	outline: none;
}

.search-container i {
	position: absolute;
	left: 1.2rem;
	top: 50%;
	transform: translateY(-50%);
	color: #666;
}

.help-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.help-card {
	background: #f8f9fa;
	border-radius: 15px;
	padding: 2rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.help-card i {
	font-size: 2rem;
	color: #2196f3;
	margin-bottom: 1rem;
}

.help-card h3 {
	color: #2a3c54;
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.help-card ul {
	list-style: none;
	padding: 0;
}

.help-card li {
	margin-bottom: 0.8rem;
}

.help-card a {
	color: #666;
	text-decoration: none;
	display: flex;
	align-items: center;
	transition: color 0.3s ease;
}

.help-card a:hover {
	color: #2196f3;
}

.help-card a i {
	font-size: 0.8rem;
	margin-right: 0.5rem;
}

.popular-topics {
	background: #f0f7ff;
	padding: 2rem;
	border-radius: 15px;
	margin-bottom: 3rem;
}

.popular-topics h2 {
	color: #2a3c54;
	margin-bottom: 1.5rem;
	text-align: center;
}

.topics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
}

.topic-item {
	background: #fff;
	padding: 1rem;
	border-radius: 10px;
	text-decoration: none;
	color: #2a3c54;
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.topic-item:hover {
	transform: translateX(5px);
}

.contact-support {
	text-align: center;
	margin-top: 3rem;
	padding: 2rem;
	background: #e8f5e9;
	border-radius: 15px;
}

.contact-support h2 {
	color: #2a3c54;
	margin-bottom: 1rem;
}

.contact-support p {
	color: #666;
	margin-bottom: 1.5rem;
}

.support-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #4caf50;
	color: white;
	padding: 1rem 2rem;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 500;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

@media (max-width: 768px) {
	.help-center-container {
		margin: 1rem;
		padding: 1rem;
	}

	.help-header h1 {
		font-size: 2rem;
	}

	.help-grid {
		grid-template-columns: 1fr;
	}
}