Changed around line 1
+ :root {
+ --primary-color: #2a2a72;
+ --secondary-color: #009ffd;
+ --accent-color: #ff6b6b;
+ --text-color: #333;
+ --light-bg: #f8f9fa;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ overflow-x: hidden;
+ }
+
+ 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 {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-weight: 700;
+ font-size: 1.5rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--text-color);
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--secondary-color);
+ }
+
+ main {
+ margin-top: 4rem;
+ }
+
+ section {
+ padding: 5rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ #hero {
+ min-height: 90vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ background: linear-gradient(135deg, rgba(42,42,114,0.05) 0%, rgba(0,159,253,0.05) 100%);
+ }
+
+ h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .tagline {
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ }
+
+ .cta-button {
+ padding: 1rem 2rem;
+ font-size: 1.1rem;
+ border: none;
+ border-radius: 50px;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ cursor: pointer;
+ transition: var(--transition);
+ transform: translateY(0);
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 5px 15px rgba(0,0,0,0.2);
+ }
+
+ .impact-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .impact-card {
+ padding: 2rem;
+ border-radius: 15px;
+ background: white;
+ box-shadow: 0 5px 30px rgba(0,0,0,0.1);
+ transition: var(--transition);
+ }
+
+ .impact-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .impact-card.high {
+ border-top: 5px solid var(--accent-color);
+ }
+
+ .impact-card.medium {
+ border-top: 5px solid var(--secondary-color);
+ }
+
+ .impact-card.low {
+ border-top: 5px solid #28a745;
+ }
+
+ .action-steps {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .step {
+ position: relative;
+ padding: 2rem;
+ background: white;
+ border-radius: 15px;
+ box-shadow: 0 5px 30px rgba(0,0,0,0.1);
+ }
+
+ .step-number {
+ position: absolute;
+ top: -20px;
+ left: 20px;
+ width: 40px;
+ height: 40px;
+ background: var(--secondary-color);
+ color: white;
+ border-radius: 50%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-weight: bold;
+ }
+
+ footer {
+ background: var(--light-bg);
+ padding: 2rem;
+ text-align: center;
+ margin-top: 4rem;
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .nav-links {
+ display: none;
+ }
+
+ section {
+ padding: 3rem 1rem;
+ }
+
+ .impact-grid, .action-steps {
+ grid-template-columns: 1fr;
+ }
+ }