Changed around line 1
+ :root {
+ --primary-color: #2563eb;
+ --secondary-color: #1e40af;
+ --background-color: #f8fafc;
+ --text-color: #1e293b;
+ --accent-color: #f59e0b;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ margin: 0;
+ padding: 0;
+ background-color: var(--background-color);
+ color: var(--text-color);
+ }
+
+ header {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 4rem 1rem;
+ text-align: center;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ main {
+ padding: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .steps-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin: 2rem 0;
+ }
+
+ .step {
+ background: white;
+ padding: 1.5rem;
+ border-radius: 8px;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .step:hover {
+ transform: translateY(-5px);
+ }
+
+ .resources ul {
+ list-style: none;
+ padding: 0;
+ }
+
+ .resources li {
+ margin: 1rem 0;
+ }
+
+ .resources a {
+ color: var(--primary-color);
+ text-decoration: none;
+ font-weight: 500;
+ }
+
+ .motivation {
+ text-align: center;
+ margin: 4rem 0;
+ }
+
+ #motivationButton {
+ background-color: var(--accent-color);
+ color: white;
+ border: none;
+ padding: 0.75rem 2rem;
+ border-radius: 4px;
+ cursor: pointer;
+ font-size: 1rem;
+ transition: background-color 0.3s ease;
+ }
+
+ #motivationButton:hover {
+ background-color: #d97706;
+ }
+
+ #motivationQuote {
+ margin-top: 1rem;
+ font-style: italic;
+ color: var(--secondary-color);
+ }
+
+ footer {
+ background-color: var(--text-color);
+ color: white;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ footer a {
+ color: white;
+ text-decoration: none;
+ margin: 0 1rem;
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .steps-grid {
+ grid-template-columns: 1fr;
+ }
+ }