Changed around line 1
+ :root {
+ --primary-color: #1a73e8;
+ --secondary-color: #202124;
+ --background-color: #f8f9fa;
+ --text-color: #202124;
+ --light-text-color: #5f6368;
+ --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ }
+
+ body {
+ margin: 0;
+ padding: 0;
+ font-family: var(--font-family);
+ color: var(--text-color);
+ background-color: var(--background-color);
+ line-height: 1.6;
+ }
+
+ header.hero {
+ background: var(--secondary-color);
+ color: white;
+ padding: 2rem 1rem;
+ text-align: center;
+ }
+
+ header.hero .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ }
+
+ header.hero .nav-links {
+ margin-top: 1rem;
+ }
+
+ header.hero .nav-links a {
+ color: white;
+ text-decoration: none;
+ margin: 0 1rem;
+ }
+
+ header.hero .nav-links a.cta-button {
+ background: var(--primary-color);
+ padding: 0.5rem 1rem;
+ border-radius: 5px;
+ }
+
+ header.hero .hero-content {
+ margin-top: 2rem;
+ }
+
+ header.hero h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ header.hero p {
+ font-size: 1.2rem;
+ margin-bottom: 2rem;
+ }
+
+ header.hero .primary-button {
+ background: var(--primary-color);
+ color: white;
+ padding: 0.75rem 1.5rem;
+ border-radius: 5px;
+ text-decoration: none;
+ }
+
+ main section {
+ padding: 2rem 1rem;
+ }
+
+ main section.blog .post-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 1.5rem;
+ }
+
+ main section.blog .post-card {
+ background: white;
+ padding: 1.5rem;
+ border-radius: 5px;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ }
+
+ main section.blog .post-card h3 {
+ margin-top: 0;
+ }
+
+ main section.blog .post-card p {
+ color: var(--light-text-color);
+ }
+
+ main section.blog .post-card .read-more {
+ color: var(--primary-color);
+ text-decoration: none;
+ font-weight: bold;
+ }
+
+ footer {
+ background: var(--secondary-color);
+ color: white;
+ padding: 2rem 1rem;
+ text-align: center;
+ }
+
+ footer .footer-links a {
+ color: white;
+ text-decoration: none;
+ margin: 0 1rem;
+ }
+
+ footer p {
+ margin-top: 1rem;
+ color: var(--light-text-color);
+ }
+
+ @media (max-width: 768px) {
+ header.hero .nav-links {
+ flex-direction: column;
+ gap: 0.5rem;
+ }
+
+ header.hero .nav-links a {
+ margin: 0.5rem 0;
+ }
+
+ main section.blog .post-grid {
+ grid-template-columns: 1fr;
+ }
+ }