
        body {
            font-family: 'Poppins', sans-serif;
            background: #f9fafb;
            color: #1f2937;
        }

        /* PREMIUM CARD */
        .section-box {
            background: white;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid #e5e7eb;
        }

        .blog-hero h1 {
            font-size: 48px;
            font-weight: 800;
        }

        .blog-hero p {
            margin-top: 15px;
            font-size: 18px;
            opacity: .9;
        }


        /* HERO */
        .blog-hero {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            text-align: center;
            padding: 120px 20px;
        }

        .blog-hero h1 {
            font-size: 46px;
            font-weight: 800;
        }

        .blog-hero p {
            margin-top: 10px;
            opacity: .9
        }

        /* WRAPPER */
        .blog-wrapper {
            max-width: 900px;
            margin: auto;
            padding: 60px 20px;
        }

        /* IMAGE */
        .blog-image {
            width: 100%;
            border-radius: 16px;
            margin: 30px 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        /* TEXT */
        .blog-content h3 {
            color: #6366f1;
        }

        .blog-content p {
            line-height: 1.8;
            margin: 15px 0;
        }

        /* STEP BOX */
        .step-box {
            display: flex;
            gap: 15px;
            background: white;
            padding: 18px;
            border-radius: 12px;
            margin-top: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .step-box span {
            font-weight: 700;
            color: #6366f1;
        }

        /* HIGHLIGHT */
        .highlight {
            background: #ecfeff;
            padding: 15px;
            border-left: 4px solid #06b6d4;
            border-radius: 8px;
            margin: 20px 0;
        }

         /* TIP BOX */
        .tip-item {
            background: white;
            padding: 18px;
            border-radius: 10px;
            margin: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }


         /* CAPTION LIST */
        .caption-list {
            margin-top: 25px;
            display: grid;
            gap: 15px;
        }

        .caption-item {
            background: white;
            padding: 10px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: .3s;
        }

        .caption-item:hover {
            transform: translateY(-4px);
        }

        .copy-btn {
            background: #6366f1;
            border: none;
            color: white;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
        }

        /* LIST */
        ul {
            margin-top: 10px
        }

        .faq-item p {
            display: none;
            margin-top: 8px;
        }

        .faq-item.active p {
            display: block;
        }

        /* CTA */
        .cta-box {
            margin-top: 50px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            padding: 40px;
            text-align: center;
            border-radius: 20px;
        }

        .cta-box a {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 25px;
            background: white;
            color: #6366f1;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
        }

        /* AUTHOR */
        .author-box {
            margin-top: 40px;
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        /* RELATED */
        .related-blogs {
            margin-top: 80px;
        }

        .related-title {
            font-size: 32px;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
        }

        .related-card {
            background: white;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: .3s;
            text-decoration: none;
            color: #111827;
        }

        .related-card:hover {
            transform: translateY(-6px);
        }

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

        .related-card-content {
            padding: 16px;
        }

        .related-card-content h4 {
            font-size: 18px;
            margin-bottom: 6px;
        }

        .related-card-content p {
            font-size: 14px;
            color: #6b7280;
        }
