Changed around line 1
+ :root {
+ --primary-color: #2a6bf2;
+ --secondary-color: #1d4ed8;
+ --text-color: #333;
+ --bg-color: #f8fafc;
+ --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: var(--bg-color);
+ }
+
+ .main-nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ background: white;
+ box-shadow: var(--card-shadow);
+ position: sticky;
+ top: 0;
+ z-index: 100;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ color: var(--primary-color);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .menu-toggle {
+ display: none;
+ }
+
+ .hero {
+ padding: 4rem 5%;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 2rem;
+ }
+
+ .featured-article {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 2rem;
+ background: white;
+ border-radius: 1rem;
+ overflow: hidden;
+ box-shadow: var(--card-shadow);
+ }
+
+ .featured-article img {
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+ }
+
+ .featured-content {
+ padding: 2rem;
+ }
+
+ .articles-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 4rem 5%;
+ }
+
+ .card {
+ background: white;
+ border-radius: 1rem;
+ overflow: hidden;
+ box-shadow: var(--card-shadow);
+ transition: transform 0.3s ease;
+ }
+
+ .card:hover {
+ transform: translateY(-5px);
+ }
+
+ .card-image {
+ height: 200px;
+ background: var(--primary-color);
+ opacity: 0.8;
+ }
+
+ .card-content {
+ padding: 1.5rem;
+ }
+
+ .read-more {
+ display: inline-block;
+ padding: 0.5rem 1rem;
+ margin-top: 1rem;
+ background: var(--primary-color);
+ color: white;
+ text-decoration: none;
+ border-radius: 0.5rem;
+ transition: background 0.3s ease;
+ }
+
+ .read-more:hover {
+ background: var(--secondary-color);
+ }
+
+ footer {
+ background: white;
+ padding: 4rem 5%;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ .footer-section ul {
+ list-style: none;
+ }
+
+ .footer-section a {
+ color: var(--text-color);
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: block;
+ background: none;
+ border: none;
+ cursor: pointer;
+ }
+
+ .menu-toggle span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: var(--text-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;
+ gap: 1rem;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .featured-article {
+ grid-template-columns: 1fr;
+ }
+
+ .hero h1 {
+ font-size: 2rem;
+ }
+ }