        * {
            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: none;
            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 Post Header */
        .post-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 120px 5% 60px;
            text-align: center;
        }

        .post-header .post-category {
            display: inline-block;
            padding: 6px 20px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .post-header h1 {
            font-size: 42px;
            margin-bottom: 20px;
            line-height: 1.3;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .post-meta {
            font-size: 15px;
            opacity: 0.8;
        }

        .post-meta span {
            margin: 0 10px;
        }

        /* Post Image */
        .post-featured-image {
            max-width: 900px;
            margin: -40px auto 0;
            padding: 0 5%;
            position: relative;
            z-index: 1;
        }

        .post-featured-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        /* Post Content */
        .post-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 5%;
        }

        .post-body h2 {
            font-size: 28px;
            margin-top: 40px;
            margin-bottom: 20px;
            color: #fff;
        }

        .post-body h3 {
            font-size: 22px;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .post-body p {
            font-size: 17px;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
        }

        .post-body ul {
            margin: 20px 0 20px 30px;
            list-style: disc;
        }

        .post-body ul li {
            font-size: 17px;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 10px;
        }

        .post-body strong {
            color: #fff;
        }

        /* Back to Blog */
        .back-to-blog {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 40px;
            padding: 10px 24px;
            background: rgba(102, 126, 234, 0.2);
            border: 1px solid #667eea;
            border-radius: 25px;
            color: #667eea;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .back-to-blog:hover {
            background: rgba(102, 126, 234, 0.3);
            transform: translateX(-5px);
        }

        /* Footer */
        footer {
            padding: 60px 5%;
            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: 1200px;
            margin: 0 auto 40px;
        }

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

        .footer-section a {
            display: block;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

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

        .footer-section p {
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.6);
        }

        .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 */
        @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; }
            .post-header { padding: 90px 4% 40px; }
            .post-header h1 { font-size: 26px; }
            .post-featured-image img { height: 220px; }
            .post-container { padding: 40px 4%; }
            .post-body h2 { font-size: 22px; }
            .post-body p, .post-body ul li { font-size: 15px; }
            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; }
            .post-header h1 { font-size: 30px; }
            .post-featured-image img { height: 280px; }
            footer { padding: 50px 4%; }
            .footer-content { grid-template-columns: 1fr; gap: 30px; }
            .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; }
            .post-header h1 { font-size: 36px; }
            .post-featured-image img { height: 350px; }
        }