Changed around line 1
+ :root {
+ --primary: #2563eb;
+ --secondary: #1e40af;
+ --bg: #f8fafc;
+ --text: #1e293b;
+ --card-bg: #ffffff;
+ --accent: #3b82f6;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--bg);
+ }
+
+ header {
+ background: var(--primary);
+ padding: 1rem;
+ position: sticky;
+ top: 0;
+ z-index: 100;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+
+ nav ul {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ justify-content: center;
+ }
+
+ nav a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: color 0.3s;
+ }
+
+ nav a:hover {
+ color: #bfdbfe;
+ }
+
+ .hero {
+ text-align: center;
+ padding: 4rem 2rem;
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ color: white;
+ }
+
+ h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ line-height: 1.2;
+ }
+
+ .subtitle {
+ font-size: 1.25rem;
+ opacity: 0.9;
+ }
+
+ section {
+ padding: 4rem 2rem;
+ }
+
+ .cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: transform 0.3s;
+ }
+
+ .card:hover {
+ transform: translateY(-5px);
+ }
+
+ .steps ol {
+ counter-reset: steps;
+ list-style: none;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1.5rem;
+ padding: 2rem;
+ }
+
+ .steps li {
+ position: relative;
+ padding: 1rem;
+ background: var(--card-bg);
+ border-radius: 8px;
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
+ }
+
+ .steps li::before {
+ counter-increment: steps;
+ content: counter(steps);
+ position: absolute;
+ top: -15px;
+ left: -15px;
+ width: 30px;
+ height: 30px;
+ background: var(--accent);
+ color: white;
+ border-radius: 50%;
+ display: grid;
+ place-items: center;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .feature {
+ padding: 1.5rem;
+ background: var(--card-bg);
+ border-radius: 8px;
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
+ }
+
+ .tool-list {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 1rem;
+ list-style: none;
+ justify-content: center;
+ }
+
+ .tool-list li {
+ padding: 0.5rem 1rem;
+ background: var(--accent);
+ color: white;
+ border-radius: 20px;
+ font-weight: 500;
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background: var(--primary);
+ color: white;
+ }
+
+ #menu-toggle {
+ display: none;
+ }
+
+ @media (max-width: 768px) {
+ #menu-toggle {
+ display: block;
+ background: none;
+ border: none;
+ cursor: pointer;
+ padding: 0.5rem;
+ }
+
+ #menu-toggle span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: white;
+ margin: 5px 0;
+ transition: 0.3s;
+ }
+
+ nav ul {
+ display: none;
+ flex-direction: column;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: var(--primary);
+ padding: 1rem;
+ }
+
+ nav ul.active {
+ display: flex;
+ }
+
+ h1 {
+ font-size: 2rem;
+ }
+
+ section {
+ padding: 2rem 1rem;
+ }
+ }