
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            background-color: #f4f4f4;
                font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
      background:linear-gradient(180deg, #fbfbfb 0%, #f7f7f8 100%);
      color:#0b1220;
      padding:40px 20px;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
        }

        header {
            background-color: #1a1a1a;
            color: white;
            padding: 20px;
            text-align: center;
        }

        nav {
            background-color: #333;
            padding: 10px;
            text-align: center;
        }
        .content {
            max-width: 800px;
            margin: 40px auto;
            background: white;
            padding: 30px;
        }

        a {
            color: #0056b3;
            text-decoration: none;
            font-weight: bold;
        }

        nav a {
            color: white;
            margin: 0 15px;
            text-decoration: none;
            font-weight: bold;
        }
        img {
                width: 500px;
                height: 300px;
                display: block; 
                margin: 0 auto;
        }

        nav a:hover {
            text-decoration: underline;
        }

        .container {
            max-width: 1000px;
            margin: 20px auto;
            padding: 0 15px;
        }

        .featured {
            background: white;
            padding: 20px;
            margin-bottom: 20px;
        }

        .featured h2 {
            margin-top: 0;
        }

        .articles {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .article {
            background: white;
            padding: 15px;
        }

        .article h3 {
            margin-top: 0;
        }

        .article a {
            color: #0056b3;
            text-decoration: none;
            font-weight: bold;
        }

        .article a:hover {
            text-decoration: underline;
        }

        footer {
            text-align: center;
            padding: 15px;
            background-color: #1a1a1a;
            color: white;
            margin-top: 40px;
        }
