Changed around line 1
+ :root {
+ --primary-color: #4a90e2;
+ --secondary-color: #2c3e50;
+ --success-color: #27ae60;
+ --error-color: #e74c3c;
+ --background-color: #f5f6fa;
+ --text-color: #2c3e50;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: var(--background-color);
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), #7f8c8d);
+ color: white;
+ padding: 4rem 2rem;
+ text-align: center;
+ clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
+ }
+
+ .feedback-form {
+ max-width: 800px;
+ margin: 2rem auto;
+ padding: 2rem;
+ background: white;
+ border-radius: 15px;
+ box-shadow: 0 10px 30px rgba(0,0,0,0.1);
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 500;
+ }
+
+ input, select, textarea {
+ width: 100%;
+ padding: 0.8rem;
+ border: 2px solid #e1e1e1;
+ border-radius: 8px;
+ font-size: 1rem;
+ transition: border-color 0.3s ease;
+ }
+
+ input:focus, select:focus, textarea:focus {
+ outline: none;
+ border-color: var(--primary-color);
+ }
+
+ .rating {
+ display: flex;
+ gap: 0.5rem;
+ margin-top: 0.5rem;
+ }
+
+ .rating button {
+ background: none;
+ border: none;
+ font-size: 2rem;
+ color: #ddd;
+ cursor: pointer;
+ transition: color 0.3s ease;
+ }
+
+ .rating button.active {
+ color: #ffd700;
+ }
+
+ .submit-btn {
+ background: var(--primary-color);
+ color: white;
+ padding: 1rem 2rem;
+ border: none;
+ border-radius: 8px;
+ font-size: 1.1rem;
+ cursor: pointer;
+ transition: transform 0.3s ease, background-color 0.3s ease;
+ }
+
+ .submit-btn:hover {
+ background: #357abd;
+ transform: translateY(-2px);
+ }
+
+ .feedback-status {
+ text-align: center;
+ margin: 2rem 0;
+ }
+
+ .status-message {
+ padding: 1rem;
+ border-radius: 8px;
+ display: none;
+ }
+
+ .status-message.success {
+ background: var(--success-color);
+ color: white;
+ }
+
+ .status-message.error {
+ background: var(--error-color);
+ color: white;
+ }
+
+ footer {
+ background: var(--secondary-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ margin-top: 4rem;
+ }
+
+ footer nav {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ }
+
+ footer a {
+ color: white;
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ footer a:hover {
+ color: var(--primary-color);
+ }
+
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .feedback-form {
+ margin: 1rem;
+ padding: 1rem;
+ }
+
+ footer nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+ }
+
+ .hidden {
+ display: none;
+ }