/* ======================
   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;
}
.feedback-container {
	max-width: 800px;
	margin: 2rem auto;
	padding: 2rem;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feedback-header {
	text-align: center;
	margin-bottom: 2rem;
}

.feedback-header h1 {
	font-size: 2.5rem;
	color: #2a3c54;
	margin-bottom: 1rem;
}

.feedback-header p {
	color: #666;
	font-size: 1.1rem;
	line-height: 1.6;
}

.feedback-form {
	display: grid;
	gap: 1.5rem;
}

.form-group {
	display: grid;
	gap: 0.5rem;
}

.form-group label {
	font-weight: 500;
	color: #2a3c54;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 0.8rem 1rem;
	border: 2px solid #eee;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: #2196f3;
	outline: none;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.rating-group {
	display: flex;
	gap: 1rem;
	align-items: center;
	margin: 1rem 0;
}

.star-rating {
	display: flex;
	gap: 0.5rem;
}

.star-rating input {
	display: none;
}

.star-rating label {
	cursor: pointer;
	font-size: 1.5rem;
	color: #ddd;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
	color: #ffd700;
}

.submit-btn {
	background: linear-gradient(45deg, #2196f3, #00bcd4);
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	justify-self: center;
	margin-top: 1rem;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.success-message {
	display: none;
	text-align: center;
	padding: 2rem;
	background: #f8f9fa;
	border-radius: 10px;
	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);
	}
}

@media (max-width: 768px) {
	.feedback-container {
		margin: 1rem;
		padding: 1.5rem;
	}

	.feedback-header h1 {
		font-size: 2rem;
	}
}