        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "League Spartan", sans-serif;
            overflow-x: hidden;
            background: #0a0e27;
            color: #fff;
        }

        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 5px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fff;
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo img {
            width: 125px;
            height: 50px;
            padding-top: 5px;
            object-fit: contain;
        }

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

        .nav-links a {
            color: #2D4792;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }

        .nav-links a:hover {
            color: #667eea;
        }

        .nav-links a.active {
            color: #667eea;
            border-bottom: 2px solid #667eea;
            padding-bottom: 5px;
        }

        .cta-btn {
            font-family: "League Spartan", sans-serif;
            padding: 12px 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: 1px solid #e2e8f0;
            border-radius: 30px;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #2D4792;
            border-radius: 2px;
            transition: all 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Blog Header */
        .blog-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 120px 5% 60px;
            text-align: center;
        }

        .blog-header h1 {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .blog-header p {
            font-size: 18px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Blog Container */
        .blog-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 120px 10%;
        }

        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .blog-card {
            display: flex;
            flex-direction: column;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            border-color: rgba(102, 126, 234, 0.5);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
        }

        .blog-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }

        .blog-category {
            position: absolute;
            bottom: 15px;
            left: 15px;
            padding: 6px 16px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .blog-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 35px;
        }

        .blog-date {
            font-size: 13px;
            color: #94a3b8;
            margin-bottom: 12px;
        }

        .blog-content h3 {
            font-size: 20px;
            margin-bottom: 12px;
            line-height: 1.4;
            color: #1e293b;
        }

        .blog-content p {
            flex: 1;
            color: #64748b;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .blog-read-more {
            margin-top: auto;
            display: inline-block;
            align-self: flex-start;
            padding: 10px 24px;
            border: 2px solid #1e293b;
            border-radius: 25px;
            color: #1e293b;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .blog-read-more:hover {
            color: #1e293b;
            transform: translateX(5px);
        }


        /* Pagination */
        .blog-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: 60px;
        }

        .page-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s;
        }

        .page-link:hover {
            border-color: #667eea;
            color: #667eea;
            background: rgba(102, 126, 234, 0.1);
        }

        .page-link.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-color: #667eea;
            color: #fff;
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
        }

        .page-link.next,
        .page-link.prev {
            width: auto;
            padding: 0 20px;
            gap: 5px;
        }

        /* Footer */
        footer {
            padding: 120px 10%;
            background: #050814;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 60px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1500px;
            margin: 0 auto 40px;
        }

        .footer-section h4 {
            margin-bottom: 20px;
            color: #667eea;
        }

        .footer-section a {
            display: block;
            color: #64748b;
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #667eea;
        }

        .footer-section p {
            margin-bottom: 10px;
            color: #64748b;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-bottom p {
            font-size: 14px;
        }

        .footer-bottom a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }

        .footer-bottom a:hover {
            color: #667eea;
        }

        /* ========================================
           RESPONSIVE DESIGN
           ======================================== */

        @media (max-width: 575.98px) {
            .navbar {
                padding: 5px 4%;
            }

            .logo img {
                width: 90px;
                height: 40px;
            }

            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 55px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 55px);
                background: white;
                flex-direction: column;
                gap: 0;
                padding: 15px;
                transition: left 0.3s ease;
                overflow-y: auto;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                align-items: stretch;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links a {
                padding: 12px 0;
                width: 100%;
                border-bottom: 1px solid #e5e7eb;
                font-size: 14px;
            }

            .cta-btn {
                width: 100%;
                margin-top: 10px;
                padding: 10px 20px;
                font-size: 14px;
            }

            .blog-header {
                padding: 90px 4% 40px;
            }

            .blog-header h1 {
                font-size: 28px;
                line-height: 1.3;
            }

            .blog-header p {
                font-size: 14px;
            }

            .blog-container {
                padding: 40px 4%;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .blog-image {
                height: 160px;
            }

            .blog-content {
            flex: 1;
            display: flex;
            flex-direction: column;
                padding: 20px;
            }

            .blog-content h3 {
                font-size: 18px;
            }

            footer {
                padding: 40px 4%;
                margin-top: 40px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
            }
        }

        @media (min-width: 576px) and (max-width: 767.98px) {
            .navbar {
                padding: 5px 4%;
            }

            .logo img {
                width: 100px;
                height: 45px;
            }

            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 60px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 60px);
                background: white;
                flex-direction: column;
                gap: 0;
                padding: 20px;
                transition: left 0.3s ease;
                overflow-y: auto;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                align-items: stretch;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links a {
                padding: 15px 0;
                width: 100%;
                border-bottom: 1px solid #e5e7eb;
                font-size: 15px;
            }

            .cta-btn {
                width: 100%;
                margin-top: 12px;
            }

            .blog-header h1 {
                font-size: 32px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            footer {
                padding: 50px 4%;
                margin-top: 50px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
            }
        }

        @media (min-width: 768px) and (max-width: 991.98px) {
            .nav-links {
                gap: 20px;
            }

            .nav-links a {
                font-size: 14px;
            }

            .cta-btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            .blog-header h1 {
                font-size: 38px;
            }

            .blog-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-content {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1400px) {
            .navbar {
                padding: 5px 8%;
            }

            .blog-header {
                padding: 130px 8% 70px;
            }

            .blog-header h1 {
                font-size: 52px;
            }

            .blog-container {
                padding: 70px 8%;
            }

            footer {
                padding: 70px 8%;
            }
        }