    /* General */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: cursive;
        margin: 0;
        padding: 0;
        background: #f5f7fa;
        color: #333;
    }

    /* Header */
    header {
        background: #111827;
        color: white;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo {
        font-size: 20px;
        font-weight: bold;
    }

    nav {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    nav a {
        color: white;
        text-decoration: none;
        font-size: 16px;
    }

    /* Dropdown */
    .dropdown {
        position: relative;
    }

    .dropdown-btn {
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 5px;
        user-select: none;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        top: 40px;
        left: 0;
        background: #1f2937;
        min-width: 160px;
        border-radius: 6px;
        flex-direction: column;
        z-index: 1000;
    }

    .dropdown-content a {
        padding: 10px;
        text-decoration: none;
        color: white;
        display: block;
    }

    .dropdown-content a:hover {
        background: #374151;
    }

    .dropdown.show .dropdown-content {
        display: flex;
    }

    /* Hamburger */
    .menu-btn {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }

    .menu-btn span {
        width: 25px;
        height: 3px;
        background: white;
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
        nav {
            display: none;
            flex-direction: column;
            background: #111827;
            position: absolute;
            top: 54px;
            left: 0;
            width: 100%;
            padding: 15px 0;
        }

        nav.show {
            display: flex;
        }

        .dropdown-content {
            position: static;
            background: #1f2937;
            border-radius: 0;
        }

        .menu-btn {
            display: flex;
        }
    }


    .controls {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem;
        background: #ffffff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .controls input,
    .controls select {
        padding: 0.5rem 1rem;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 6px;
        outline: none;
    }

    .news-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 2rem;
        max-width: 1200px;
        margin: auto;
    }

    .news-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease;
        display: none;
        /* hidden by default for load more effect */
    }

    .news-card.visible {
        display: block;
    }

    .news-card:hover {
        transform: translateY(-5px);
    }

    .news-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .news-content {
        padding: 1rem;
    }

    .news-content h3 {
        margin: 0;
        font-size: 1.2rem;
        color: #1c7c54;
    }

    .news-content p {
        font-size: 0.95rem;
        margin: 0.5rem 0;
        color: #555;
    }

    .tag {
        display: inline-block;
        margin-top: 0.5rem;
        background: #e6f7f1;
        color: #1c7c54;
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
        border-radius: 4px;
    }

    .load-more-container {
        text-align: center;
        margin: 2rem 0;
    }

    .load-more-btn {
        background: #1c7c54;
        color: white;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s;
    }

    .load-more-btn:hover {
        background: #155f40;
    }

    /* Footer */
    footer {
        background: #1b4332;
        color: white;
        text-align: center;
        padding: 15px;
    }

    h1 {
        font-size: 45px;
    }