        /* ========== BLOG HERO ========== */

        /* Blog Meta */
        .blog-meta {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
            /* color: rgba(255,255,255,0.7); */
            font-size: 14px;
        }

        .blog-meta i {
            color: var(--gold);
            font-size: 14px;
        }

        .blog-hero h1 {
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 700;
            color: white;
            line-height: 1.2;
            margin-bottom: 20px;
            max-width: 800px;
        }

        .blog-hero p {
            font-size: 18px;
            color: rgba(255,255,255,0.85);
            line-height: 1.6;
            max-width: 700px;
        }

        /* ========== MAIN CONTENT WRAPPER ========== */
        .content-wrapper {
            /* max-width: 1200px; */
            /* margin: 0 auto; */
            padding: 60px 24px;
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 50px;
        }

        /* Left Content */
        .blog-main {
            background: var(--white);
            border-radius: 32px;
            padding: 48px;
            box-shadow: var(--shadow-sm);
        }

        /* Typography */
        .blog-main h2 {
            font-family: var(--font-display);
            font-size: 28px;
            color: var(--navy);
            margin: 40px 0 16px;
            padding-left: 12px;
            border-left: 4px solid var(--rose);
        }

        .blog-main h2:first-of-type {
            margin-top: 0;
        }

        .blog-main h3 {
            font-family: var(--font-display);
            font-size: 22px;
            color: var(--royal);
            margin: 28px 0 12px;
        }

        .blog-main p {
            font-size: 16px;
            line-height: 1.8;
            color: #444;
            margin-bottom: 20px;
        }

        .blog-main strong {
            color: var(--navy);
        }

        /* Blockquote */
        .blog-quote {
            background: linear-gradient(135deg, var(--frost), var(--white));
            border-left: 4px solid var(--rose);
            padding: 24px 32px;
            margin: 32px 0;
            border-radius: 20px;
            font-family: var(--font-serif);
            font-size: 18px;
            font-style: italic;
            color: var(--navy);
        }

        .blog-quote i {
            color: var(--gold);
            margin-right: 8px;
        }

        /* List Styles */
        .blog-list {
            margin: 20px 0 20px 20px;
        }

        .blog-list li {
            margin-bottom: 12px;
            line-height: 1.7;
            color: #444;
        }

        .blog-list li strong {
            color: var(--rose);
        }

        /* Info Box */
        .info-box {
            background: var(--rose-light);
            border-radius: 20px;
            padding: 24px;
            margin: 30px 0;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .info-box i {
            font-size: 32px;
            color: var(--rose);
        }

        .info-box h4 {
            font-family: var(--font-display);
            font-size: 18px;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .info-box p {
            margin-bottom: 0;
        }

        /* Tip Card */
        .tip-card {
            background: linear-gradient(135deg, var(--gold-light), var(--rose-light));
            border-radius: 20px;
            padding: 24px;
            margin: 30px 0;
            text-align: center;
        }

        .tip-card i {
            font-size: 40px;
            color: var(--gold);
            margin-bottom: 12px;
        }

        .tip-card h4 {
            font-family: var(--font-display);
            font-size: 20px;
            color: var(--navy);
            margin-bottom: 10px;
        }

        /* Table */
        .fee-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            /* background: var(--frost); */
            border-radius: 16px;
            overflow: hidden;
        }

        .fee-table th,
        .fee-table td {
            padding: 14px 20px;
            text-align: left;
            border-bottom: 1px solid var(--silver);
        }

        .fee-table th {
            background: var(--navy);
            color: white;
            font-weight: 600;
        }

        .fee-table tr:last-child td {
            border-bottom: none;
        }

        /* Author Box */
        .author-box {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 28px;
            background: var(--frost);
            border-radius: 24px;
            margin: 40px 0 30px;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--navy), var(--royal));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
        }

        .author-info h4 {
            font-family: var(--font-display);
            font-size: 18px;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .author-info p {
            margin-bottom: 0;
            font-size: 14px;
            color: #666;
        }

        /* Share Section */
        .share-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            padding-top: 24px;
            border-top: 1px solid var(--silver);
            margin-top: 24px;
        }

        .share-links {
            display: flex;
            gap: 12px;
        }

        .share-link {
            width: 40px;
            height: 40px;
            background: var(--frost);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            transition: 0.3s;
        }

        .share-link:hover {
            background: var(--rose);
            color: white;
            transform: translateY(-3px);
        }

        /* ========== SIDEBAR STYLES ========== */
        .sticky-sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
            height: fit-content;
        }

        .sidebar-card {
            background: var(--white);
            border-radius: 24px;
            padding: 24px;
            margin-bottom: 28px;
            box-shadow: var(--shadow-sm);
            transition: 0.3s;
        }

        .sidebar-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .sidebar-card h3 {
            font-family: var(--font-display);
            font-size: 20px;
            color: var(--navy);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--rose-light);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Search Box */
        .search-box {
            display: flex;
            border: 1px solid var(--silver);
            border-radius: 50px;
            overflow: hidden;
        }

        .search-box input {
            flex: 1;
            padding: 12px 18px;
            border: none;
            outline: none;
            font-family: var(--font-sans);
        }

        .search-box button {
            background: var(--rose);
            border: none;
            padding: 0 18px;
            color: white;
            cursor: pointer;
            transition: 0.3s;
        }

        .search-box button:hover {
            background: var(--navy);
        }

        /* Recent Posts */
        .recent-post {
            display: flex;
            gap: 14px;
            padding: 12px 0;
            border-bottom: 1px solid var(--silver);
        }

        .recent-post:last-child {
            border-bottom: none;
        }

        .recent-post-img {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--navy-light), var(--rose-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .recent-post-content h4 {
            font-size: 14px;
            color: var(--navy);
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .recent-post-content a {
            text-decoration: none;
            color: var(--navy);
        }

        .recent-post-content a:hover {
            color: var(--rose);
        }

        .recent-post-content span {
            font-size: 11px;
            color: #999;
        }

        /* Category List */
        .category-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .category-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed var(--silver);
            text-decoration: none;
            color: var(--navy);
            transition: 0.3s;
        }

        .category-item:hover {
            color: var(--rose);
            padding-left: 8px;
        }

        .category-count {
            background: var(--rose-light);
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 12px;
        }

        /* CTA Card */
        .cta-card {
            background: linear-gradient(135deg, var(--navy), var(--royal));
            color: white;
            text-align: center;
        }

        .cta-card h3 {
            color: white;
            border-bottom-color: rgba(255,255,255,0.2);
        }

        .cta-card p {
            font-size: 14px;
            margin-bottom: 20px;
            color: rgba(255,255,255,0.8);
        }

        .cta-btn {
            display: inline-block;
            background: var(--gold);
            color: var(--navy);
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }

        .cta-btn:hover {
            background: var(--rose);
            color: white;
            transform: scale(1.02);
        }

        /* Tags */
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            background: var(--frost);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 12px;
            color: var(--navy);
            text-decoration: none;
            transition: 0.3s;
        }

        .tag:hover {
            background: var(--rose);
            color: white;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .sticky-sidebar {
                position: static;
            }
            
            .blog-hero h1 {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .blog-hero {
                padding: 80px 0 50px;
            }
            
            .blog-hero h1 {
                font-size: 28px;
            }
            
            .blog-main {
                padding: 28px;
            }
            
            .blog-main h2 {
                font-size: 24px;
            }
            
            .blog-quote {
                padding: 20px;
                font-size: 16px;
            }
            
            .author-box {
                flex-direction: column;
                text-align: center;
            }
            
            .info-box {
                flex-direction: column;
            }
            
            .fee-table th,
            .fee-table td {
                padding: 10px 12px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .hero-container {
                padding: 0 16px;
            }
            
            .content-wrapper {
                padding: 40px 16px;
            }
            
            .blog-main {
                padding: 20px;
            }
            
            .blog-meta {
                gap: 12px;
            }
            
            .share-section {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.6s ease forwards;
        }