Changed around line 1
+ :root {
+ --primary-color: #2d3436;
+ --accent-color: #0984e3;
+ --background-color: #f5f6fa;
+ --text-color: #2d3436;
+ --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ }
+
+ header {
+ background: white;
+ box-shadow: var(--card-shadow);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--primary-color);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ .menu-toggle {
+ display: none;
+ }
+
+ main {
+ margin-top: 4rem;
+ padding: 2rem;
+ }
+
+ .hero {
+ text-align: center;
+ padding: 4rem 0;
+ background: linear-gradient(135deg, #fff, #f5f6fa);
+ border-radius: 1rem;
+ margin-bottom: 4rem;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .post-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin: 2rem 0;
+ }
+
+ .post-card {
+ background: white;
+ border-radius: 1rem;
+ overflow: hidden;
+ box-shadow: var(--card-shadow);
+ transition: transform 0.3s ease;
+ }
+
+ .post-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .post-content {
+ padding: 1.5rem;
+ }
+
+ .post-content h3 {
+ margin-bottom: 1rem;
+ color: var(--primary-color);
+ }
+
+ .read-more {
+ display: inline-block;
+ margin-top: 1rem;
+ color: var(--accent-color);
+ text-decoration: none;
+ font-weight: 500;
+ }
+
+ .newsletter-signup {
+ background: white;
+ padding: 3rem;
+ border-radius: 1rem;
+ text-align: center;
+ margin: 4rem 0;
+ box-shadow: var(--card-shadow);
+ }
+
+ form {
+ display: flex;
+ gap: 1rem;
+ max-width: 500px;
+ margin: 2rem auto 0;
+ }
+
+ input[type="email"] {
+ flex: 1;
+ padding: 0.8rem;
+ border: 2px solid #ddd;
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ }
+
+ button {
+ padding: 0.8rem 2rem;
+ background: var(--accent-color);
+ color: white;
+ border: none;
+ border-radius: 0.5rem;
+ cursor: pointer;
+ font-weight: 500;
+ transition: background 0.3s ease;
+ }
+
+ button:hover {
+ background: #0773c5;
+ }
+
+ footer {
+ background: white;
+ padding: 3rem;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ .footer-section h4 {
+ margin-bottom: 1rem;
+ color: var(--primary-color);
+ }
+
+ .footer-section ul {
+ list-style: none;
+ }
+
+ .footer-section a {
+ color: var(--text-color);
+ text-decoration: none;
+ display: block;
+ margin: 0.5rem 0;
+ }
+
+ @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: var(--primary-color);
+ margin: 5px 0;
+ transition: 0.3s;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: white;
+ flex-direction: column;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ form {
+ flex-direction: column;
+ }
+
+ .hero h1 {
+ font-size: 2rem;
+ }
+ }