* { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --primary: #059669; /* Darkened for better contrast */
            --primary-dark: #059669;
            --secondary: #1e293b;
            --accent: #f59e0b;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --radius: 12px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
        }

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

        /* Header */
        .header {
            background: var(--bg-white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-icon { font-size: 2rem; }

        .logo-text { display: flex; flex-direction: column; }

        .logo-name { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); }
        .logo-name .highlight { color: var(--primary); }
        .logo-tagline { font-size: 0.7rem; color: var(--text-light); }

        .nav { display: flex; align-items: center; gap: 5px; }

        .nav-link {
            padding: 10px 15px;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .nav-link:hover, .nav-link.active {
            background: var(--primary);
            color: white;
        }

        /* Dropdown */
        .dropdown { position: relative; }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }

        .dropdown-toggle .arrow {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .dropdown:hover .arrow { transform: rotate(180deg); }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--bg-white);
            min-width: 220px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
            padding: 10px 0;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 12px 20px;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background: var(--primary);
            color: white;
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            border-radius: 3px;
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, var(--secondary) 0%, #334155 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 10px; }
        .hero .highlight { color: var(--primary); }
        .hero-subtitle { font-size: 1.3rem; color: var(--primary); font-weight: 600; margin-bottom: 15px; }
        .hero-desc { font-size: 1.1rem; color: #94a3b8; max-width: 700px; margin: 0 auto 40px; }

        .hero-stats { display: flex; justify-content: center; gap: 60px; }
        .stat { text-align: center; }
        .stat-number { display: block; font-size: 2.5rem; font-weight: 700; color: var(--primary); }
        .stat-label { font-size: 0.9rem; color: #94a3b8; }

        /* Section Titles */
        .section-title { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 10px; }
        .section-subtitle { text-align: center; color: var(--text-light); margin-bottom: 40px; }

        /* Categories */
        .categories-section { padding: 80px 0; }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .category-card {
            background: var(--bg-white);
            padding: 30px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .category-icon { font-size: 3rem; margin-bottom: 15px; }
        .category-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
        .category-card p { font-size: 0.85rem; color: var(--text-light); }

        /* Featured */
        .featured-section { padding: 80px 0; background: var(--bg-white); }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .featured-card {
            background: var(--bg-light);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .featured-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .featured-card img { width: 100%; height: 200px; object-fit: cover; }

        .featured-card-content { padding: 25px; }

        .category-badge {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .featured-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
        .featured-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 15px; }

        .meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* Filter Banner */
        .filter-banner {
            background: var(--primary);
            color: white;
            padding: 15px 0;
        }

        .filter-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }

        .clear-filter {
            background: white;
            color: var(--primary);
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 500;
        }

        /* Articles Grid */
        .articles-section { padding: 80px 0; }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .article-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .article-card img { width: 100%; height: 180px; object-fit: cover; }

        .article-card-content { padding: 20px; }

        .article-card .category-badge {
            background: var(--bg-light);
            color: var(--primary);
            font-size: 0.7rem;
            font-weight: 600;
        }

        .article-card h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }

        .article-card p {
            color: var(--text-light);
            font-size: 0.85rem;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-card .meta { font-size: 0.75rem; }

        /* Single Article */
        .single-article { padding: 40px 0 80px; }

        .back-btn {
            background: var(--bg-white);
            border: 2px solid var(--border);
            padding: 10px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .article-full {
            background: var(--bg-white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .article-full img { width: 100%; height: 400px; object-fit: cover; }

        .article-full-content { padding: 40px; }

        .article-full h1 { font-size: 2rem; margin-bottom: 20px; line-height: 1.3; }

        .article-meta {
            display: flex;
            gap: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 30px;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .article-full .content {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .article-full .content p { margin-bottom: 20px; }
        .article-full .content h3 { margin: 30px 0 15px; font-size: 1.4rem; }
        .article-full .content ul { margin: 15px 0 15px 25px; }
        .article-full .content li { margin-bottom: 10px; }

        .share-section {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid var(--border);
        }

        .share-buttons { display: flex; gap: 10px; margin-top: 15px; }

        .share-btn {
            padding: 10px 20px;
            border-radius: 25px;
            border: none;
            cursor: pointer;
            font-weight: 500;
            color: white;
            transition: transform 0.3s ease;
        }

        .share-btn:hover { transform: scale(1.05); }
        .share-btn.facebook { background: #1877f2; }
        .share-btn.twitter { background: #1da1f2; }
        .share-btn.whatsapp { background: #25d366; }

        /* Page Sections */
        .page-section { padding: 40px 0 80px; min-height: 80vh; }

        .page-content {
            background: var(--bg-white);
            padding: 50px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .page-content h1 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            border-bottom: 3px solid var(--primary);
            padding-bottom: 15px;
        }

        .page-content h3 { font-size: 1.3rem; margin: 25px 0 15px; }
        .page-content p { margin-bottom: 15px; line-height: 1.8; }
        .page-content ul { margin: 15px 0 15px 25px; }
        .page-content li { margin-bottom: 10px; }

        /* Contact */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 30px 0;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: var(--bg-light);
            padding: 20px;
            border-radius: 8px;
        }

        .contact-icon { font-size: 2rem; }
        .contact-item h4 { font-size: 0.9rem; margin-bottom: 5px; }
        .contact-item p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

        .contact-form {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 15px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        /* Newsletter */
        .newsletter-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 80px 0;
            text-align: center;
        }

        .newsletter-content h2 { color: white; font-size: 2rem; margin-bottom: 10px; }
        .newsletter-content p { color: rgba(255, 255, 255, 0.9); margin-bottom: 30px; }

        .newsletter-form {
            display: flex;
            justify-content: center;
            gap: 10px;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
        }

        /* Buttons */
        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary { background: var(--secondary); color: white; }
        .btn-primary:hover { background: var(--text-dark); transform: translateY(-2px); }

        /* Footer */
        .footer {
            background: var(--secondary);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .footer-logo .logo-icon { font-size: 1.5rem; }
        .footer-logo .logo-name { font-size: 1.3rem; font-weight: 700; color: white; }
        .footer-desc { color: #a7a7a7; font-size: 0.9rem; }

        .footer-col h4 { font-size: 1.1rem; margin-bottom: 20px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 10px; }
        .footer-col a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
        .footer-col a:hover { color: var(--primary); }

        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 20px;
            text-align: center;
            color: #a7a7a7;
            font-size: 0.85rem;
        }

        /* No Articles */
        .no-articles { text-align: center; padding: 60px 20px; color: var(--text-light); }
        .no-articles h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--text-dark); }

        /* Responsive */
        @media (max-width: 1024px) {
            .categories-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn { display: flex; }
            
            .nav {
                position: fixed;
                top: 75px;
                left: 0;
                right: 0;
                background: var(--bg-white);
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow-lg);
                display: none;
            }
            
            .nav.active { display: flex; }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                display: none;
                background: var(--bg-light);
                margin-top: 10px;
            }
            
            .dropdown.active .dropdown-menu { display: block; }
            
            .hero h1 { font-size: 2rem; }
            .hero-stats { gap: 30px; }
            .stat-number { font-size: 1.8rem; }
            
            .categories-grid { grid-template-columns: 1fr; }
            .featured-grid { grid-template-columns: 1fr; }
            .articles-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .page-content { padding: 30px 20px; }
            .contact-info { grid-template-columns: 1fr; }
            .newsletter-form { flex-direction: column; }
            .logo-tagline { display: none; }
            .article-full img { height: 250px; }
            .article-full-content { padding: 25px; }
            .article-meta { flex-wrap: wrap; gap: 15px; }
        }
    
