        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
        }

        nav {
            background-color: #1e1e2f;
            padding: 15px 0;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        nav a {
            color: #ffffff;
            margin: 0 20px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #ffcc00;
        }

        h1 {
            text-align: center;
            margin: 30px 0 20px;
            color: #2c3e50;
            font-size: 32px;
        }

        .story-slider {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            padding: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .story-box {
            background-color: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .story-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .story-box img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .story-box h2 {
            font-size: 20px;
            margin: 15px;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .story-box p {
            font-size: 15px;
            color: #555;
            margin: 0 15px 15px;
            flex-grow: 1;
        }

        .read-more {
            display: inline-block;
            background: #007bff;
            color: #fff;
            padding: 10px 16px;
            margin: 0 15px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s ease;
            align-self: flex-start;
        }

        .read-more:hover {
            background-color: #0056b3;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 24px;
            }

            nav a {
                font-size: 14px;
                margin: 0 10px;
            }

            .story-slider {
                padding: 15px;
                gap: 15px;
            }
        }
   