Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --secondary-color: #3498db;
+ --background-color: #ecf0f1;
+ --text-color: #333;
+ --white: #fff;
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ }
+
+ header.hero {
+ background: var(--primary-color);
+ color: var(--white);
+ padding: 2rem 1rem;
+ text-align: center;
+ }
+
+ header.hero h1 {
+ margin: 0;
+ font-size: 2.5rem;
+ }
+
+ header.hero p {
+ font-size: 1.2rem;
+ margin: 0.5rem 0 0;
+ }
+
+ main {
+ padding: 1rem;
+ }
+
+ section {
+ margin-bottom: 2rem;
+ }
+
+ section h2 {
+ color: var(--primary-color);
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ section p {
+ font-size: 1rem;
+ line-height: 1.6;
+ }
+
+ .steps {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1rem;
+ }
+
+ .step {
+ background: var(--white);
+ padding: 1rem;
+ border-radius: 8px;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ }
+
+ .step h3 {
+ color: var(--secondary-color);
+ font-size: 1.5rem;
+ margin-bottom: 0.5rem;
+ }
+
+ .cta {
+ text-align: center;
+ padding: 2rem;
+ background: var(--secondary-color);
+ color: var(--white);
+ border-radius: 8px;
+ }
+
+ .cta h2 {
+ margin: 0;
+ font-size: 2rem;
+ }
+
+ .cta p {
+ font-size: 1.2rem;
+ margin: 0.5rem 0 0;
+ }
+
+ footer {
+ text-align: center;
+ padding: 1rem;
+ background: var(--primary-color);
+ color: var(--white);
+ margin-top: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ header.hero h1 {
+ font-size: 2rem;
+ }
+
+ header.hero p {
+ font-size: 1rem;
+ }
+
+ .steps {
+ grid-template-columns: 1fr;
+ }
+
+ .cta h2 {
+ font-size: 1.5rem;
+ }
+
+ .cta p {
+ font-size: 1rem;
+ }
+ }