        :root {
            --primary-yellow: #FFD600;
            --primary-orange: #FF6D00;
            --text-black: #1A1A1A;
            --text-gray: #555555;
            --bg-body: #FAFAFA;
            --bg-card: #FFFFFF;
            --shadow-soft: 0 10px 40px rgba(0,0,0,0.05);
            --shadow-hover: 0 20px 60px rgba(255, 109, 0, 0.15);
            --radius: 24px;
        }

        /* --- Reset & Base --- */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'pelak', sans-serif; outline: none; }
        
        body {
            background-color: var(--bg-body);
            color: var(--text-black);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            line-height: 1.8;
        }

        a { text-decoration: none; color: inherit; transition: color 0.3s; }
        ul { list-style: none; }
        p { margin-bottom: 1rem; }

        /* --- Navbar (Sticky) --- */
        nav {
            position: sticky; top: 0; z-index: 1000;
            background: rgba(255, 255, 255, 0.90);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 1rem 1.5rem;
            transition: all 0.3s ease;
        }
        .nav-container {
            max-width: 1200px; margin: 0 auto;
            display: flex; justify-content: space-between; align-items: center;
        }
        
        /* Logo Area */
        .brand-container { display: flex; align-items: center; gap: 10px; }
        .brand-logo img {
            width: 50px; height: 50px;
            display: flex; align-items: center; justify-content: center;
        }
        .brand-text h1 { font-size: 1.3rem; font-weight: 900; color: var(--text-black); line-height: 1;  }
        .brand-text span { font-size: 0.8rem; color: var(--text-gray); font-weight: 400; }

        /* Navigation Buttons */
        .header-actions {
            display: flex; gap: 10px;
        }
        
        .header-btn {
            display: flex; align-items: center; gap: 8px;
            padding: 0.7rem 1.2rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
        }

        /* Btn 1: Course */
        .btn-course {
            background: #E3F2FD; color: #1565C0;
            border: 1px solid #BBDEFB;
        }
        .btn-course:hover { background: #BBDEFB; transform: translateY(-2px); }

        /* Btn 2: Advice */
        .btn-advice {
            background: #FFF3E0; color: #E65100;
            border: 1px solid #FFE0B2;
        }
        .btn-advice:hover { background: #FFE0B2; transform: translateY(-2px); }

        .header-btn svg { width: 20px; height: 20px; }

        /* --- Main Layout --- */
        main { flex: 1; width: 100%; display: block; animation: fadeIn 0.5s ease; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* --- Hero Section --- */
        .hero { text-align: center; padding: 6rem 1rem 4rem; }
        .hero-badge {
            display: inline-block; padding: 0.6rem 1.5rem;
            background: #FFF9C4; color: #F57F17;
            border-radius: 50px; font-size: 0.9rem; font-weight: 800;
            margin-bottom: 2rem; border: 1px solid #FFF59D;
            box-shadow: 0 4px 10px rgba(255, 214, 0, 0.15);
        }
        .hero h2 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 900; color: #212121;
            margin-bottom: 1.5rem; line-height: 1.3;
        }
        .hero p {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: #666; max-width: 800px; margin: 0 auto 3rem;
        }

        /* --- USP Bar --- */
        .usp-bar {
            display: inline-flex; flex-wrap: wrap; gap: 2rem; justify-content: center;
            background: #fff; padding: 1.5rem 3rem; border-radius: 20px;
            box-shadow: var(--shadow-soft); border: 1px solid #f0f0f0;
        }
        .usp-item { display: flex; align-items: center; gap: 10px; font-weight: 700; color: #333; }
        .usp-dot { width: 10px; height: 10px; background: var(--primary-orange); border-radius: 50%; display: inline-block; }

        /* --- Card Grid System --- */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            max-width: 1200px; margin: 0 auto 5rem; padding: 0 1.5rem;
        }

        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 3rem 2rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            border: 1px solid #f2f2f2;
            box-shadow: var(--shadow-soft);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
            cursor: pointer;
            height: 100%;
        }

        .card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(255, 214, 0, 0.5);
        }

        .card-icon-box {
            width: 90px; height: 90px;
            background: #FFF8E1;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 2rem;
            color: var(--primary-orange);
            font-size: 2rem;
            transition: transform 0.3s ease;
        }
        .card:hover .card-icon-box { transform: scale(1.1) rotate(5deg); background: var(--primary-yellow); color: #000; }

        .card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem; color: #212121; }
        .card-desc { color: #666; font-size: 1rem; margin-bottom: 2.5rem; line-height: 1.7; flex-grow: 1; }
        
        .card-cta {
            color: var(--primary-orange);
            font-weight: 800; font-size: 1.1rem;
            display: flex; align-items: center; gap: 8px;
            transition: gap 0.3s ease;
        }
        .card:hover .card-cta { gap: 15px; }

        /* --- SEO Article Section --- */
        .seo-section {
            background: #fff;
            padding: 5rem 1.5rem;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        .seo-content {
            max-width: 900px; margin: 0 auto;
        }
        .seo-content h2 { font-size: 2rem; font-weight: 900; color: var(--text-black); margin-top: 3rem; margin-bottom: 1.5rem; border-right: 5px solid var(--primary-yellow); padding-right: 15px; }
        .seo-content h3 { font-size: 1.4rem; font-weight: 700; color: #444; margin-top: 2rem; margin-bottom: 1rem; }
        .seo-content p { font-size: 1.1rem; color: #555; margin-bottom: 1.5rem; }
        .seo-content ul { padding-right: 20px; margin-bottom: 2rem; }
        .seo-content li { margin-bottom: 0.8rem; position: relative; padding-right: 20px; color: #555; }
        .seo-content li::before { content: "•"; color: var(--primary-orange); font-size: 1.5rem; position: absolute; right: 0; top: -10px; }

        /* --- FAQ Section --- */
        .faq-container { max-width: 800px; margin: 5rem auto; padding: 0 1.5rem; }
        .faq-item {
            background: #fff; border-radius: 16px; margin-bottom: 1rem;
            border: 1px solid #eee; overflow: hidden;
            transition: box-shadow 0.3s;
        }
        .faq-item:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .faq-question {
            padding: 1.5rem; width: 100%; text-align: right; background: none; border: none;
            font-size: 1.1rem; font-weight: 700; cursor: pointer;
            display: flex; justify-content: space-between; align-items: center;
        }
        .faq-answer {
            max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.5rem;
            color: #666; line-height: 1.8;
        }
        .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }
        .faq-icon { transition: transform 0.3s; }
        .faq-item.open .faq-icon { transform: rotate(180deg); color: var(--primary-orange); }

        /* --- Footer --- */
        footer {
            background: #121212; color: #fff;
            padding: 5rem 1rem 2rem;
            text-align: center;
        }
        .footer-logo { font-size: 1.5rem; font-weight: 900; color: var(--primary-yellow); margin-bottom: 1rem; }
        .footer-desc { max-width: 600px; margin: 0 auto 3rem; color: #888; font-size: 0.95rem; }
        .footer-copy { border-top: 1px solid #333; padding-top: 2rem; color: #555; font-size: 0.8rem; }

        /* --- Mobile Responsive --- */
        @media(max-width: 768px) {
            .hero h2 { font-size: 2rem; }
            .usp-bar { flex-direction: column; gap: 1rem; align-items: flex-start; }
            .cards-grid { grid-template-columns: 1fr; }
            
            /* Mobile Header Buttons: Compact */
            .header-btn span {
                font-size: 0.8rem;
            }
            .header-btn {
                padding: 0.6rem 0.8rem;
            }
        }

        @media(max-width: 480px) {
            .header-btn span {
                display: none; /* Hide text on very small screens to fit icons */
            }
            .header-btn {
                padding: 0.6rem;
                border-radius: 50%; /* Make round if icon only */
            }
            .header-btn:hover {
                border-radius: 20px;
            }
        }

.brand-text h1 {
    font-size: 16px;
    margin-bottom: -2px;
}

        h1 {
    font-weight: 900;
    line-height: 1.4em;
    margin-bottom: 20px;
}
.brand-logo img
Specificity: (0,1,1)
 {
    width: 50px;
    height: auto;
}