Changed around line 1
+ :root {
+ --primary-color: #3a86ff;
+ --secondary-color: #8338ec;
+ --accent-color: #ff006e;
+ --background-color: #f8f9fa;
+ --text-color: #2b2d42;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: var(--background-color);
+ }
+
+ header {
+ position: fixed;
+ width: 100%;
+ top: 0;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--text-color);
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ #hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ background: linear-gradient(135deg, rgba(58, 134, 255, 0.1), rgba(131, 56, 236, 0.1));
+ }
+
+ h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ }
+
+ #startJourney {
+ padding: 1rem 2rem;
+ font-size: 1.2rem;
+ border: none;
+ border-radius: 50px;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ #startJourney:hover {
+ transform: translateY(-2px);
+ }
+
+ .content-section {
+ padding: 5rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .question-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .question-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .question-card:hover {
+ transform: translateY(-5px);
+ }
+
+ textarea {
+ width: 100%;
+ min-height: 150px;
+ margin-top: 1rem;
+ padding: 1rem;
+ border: 1px solid #ddd;
+ border-radius: 8px;
+ resize: vertical;
+ }
+
+ .path-visualizer {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-top: 3rem;
+ position: relative;
+ }
+
+ .path-node {
+ background: white;
+ padding: 1rem 2rem;
+ border-radius: 50px;
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
+ position: relative;
+ z-index: 1;
+ }
+
+ .path-node::before {
+ content: '';
+ position: absolute;
+ top: 50%;
+ left: -100%;
+ width: 100%;
+ height: 2px;
+ background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
+ }
+
+ .path-node:first-child::before {
+ display: none;
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background: white;
+ margin-top: 4rem;
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .nav-links {
+ display: none;
+ }
+
+ .path-visualizer {
+ flex-direction: column;
+ gap: 2rem;
+ }
+
+ .path-node::before {
+ left: 50%;
+ top: -100%;
+ width: 2px;
+ height: 100%;
+ }
+ }