/* ======================
   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;
}
.support-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	font-family: Arial, sans-serif;
}

.support-header {
	text-align: center;
	margin-bottom: 3rem;
	padding: 2rem 0;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	border-radius: 10px;
}

.support-title {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 1rem;
}

.support-description {
	color: #666;
	font-size: 1.1rem;
}

.support-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.support-card {
	background: #fff;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.support-card:hover {
	transform: translateY(-5px);
}

.card-icon {
	font-size: 2.5rem;
	color: #4a90e2;
	margin-bottom: 1rem;
}

.card-title {
	font-size: 1.5rem;
	color: #333;
	margin-bottom: 1rem;
}

.card-description {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.support-link {
	display: inline-block;
	color: #4a90e2;
	text-decoration: none;
	font-weight: bold;
}

.support-link:hover {
	text-decoration: underline;
}

.contact-form {
	background: #fff;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	margin-top: 3rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: #333;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
}

.form-textarea {
	min-height: 150px;
	resize: vertical;
}

.submit-btn {
	background: #4a90e2;
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	transition: background 0.3s ease;
}

.submit-btn:hover {
	background: #357abd;
}

/* Success Message Styles */
.success-message {
	display: none;
	background-color: #f8f9fa;
	border-radius: 10px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	margin-top: 2rem;
}

.success-message.show {
	display: block;
	animation: fadeIn 0.5s ease-in-out;
}

.success-content {
	max-width: 500px;
	margin: 0 auto;
}

.success-message i {
	font-size: 4rem;
	color: #28a745;
	margin-bottom: 1rem;
}

.success-message h3 {
	font-size: 1.8rem;
	color: #333;
	margin-bottom: 1rem;
}

.success-message p {
	color: #666;
	font-size: 1.1rem;
	line-height: 1.6;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.support-form {
	display: grid;
	gap: 1.5rem;
}