Changed around line 1
+ :root {
+ --primary-color: #6366f1;
+ --secondary-color: #818cf8;
+ --background-color: #f8fafc;
+ --text-color: #1e293b;
+ --border-radius: 12px;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: var(--background-color);
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 2rem;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(to right, #fff, #e0e7ff);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ margin-left: 2rem;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .intro {
+ text-align: center;
+ padding: 4rem 2rem;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .intro h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .form-container {
+ max-width: 800px;
+ margin: 0 auto;
+ padding: 2rem;
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 500;
+ }
+
+ textarea, input {
+ width: 100%;
+ padding: 0.75rem;
+ border: 2px solid #e2e8f0;
+ border-radius: var(--border-radius);
+ transition: var(--transition);
+ font-size: 1rem;
+ }
+
+ textarea {
+ height: 100px;
+ resize: vertical;
+ }
+
+ textarea:focus, input:focus {
+ outline: none;
+ border-color: var(--primary-color);
+ box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
+ }
+
+ .submit-btn {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 1rem 2rem;
+ border: none;
+ border-radius: var(--border-radius);
+ cursor: pointer;
+ transition: var(--transition);
+ width: 100%;
+ font-size: 1.1rem;
+ font-weight: 500;
+ }
+
+ .submit-btn:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
+ }
+
+ footer {
+ background: #f1f5f9;
+ padding: 2rem;
+ text-align: center;
+ margin-top: 4rem;
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .nav-links {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+
+ .nav-links a {
+ margin: 0;
+ }
+
+ .intro h1 {
+ font-size: 2rem;
+ }
+ }