 
        body {
            font-family: 'Sarabun', sans-serif;
            background-color: #f8f9fa;
        }
        /* พื้นหลังสีน้ำเงินเข้มตามภาพ */
        .ita-section {
            background-color: #1a233a; 
            color: #ffffff;
            border-radius: 12px;
        }
        .text-muted-custom {
            color: #a0aec0;
        }
        /* ปุ่มลิงก์รายการซ้ายมือ */
        .list-item-link {
            color: #ffffff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s ease;
        }
        .list-item-link:hover {
            color: #63b3ed;
            transform: translateX(5px);
        }
        /* ปุ่มสีแดงหลัก */
        .btn-ita-red {
            background-color: #9b1c1c;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            transition: background-color 0.2s;
        }
        .btn-ita-red:hover {
            background-color: #bd2130;
            color: white;
        }
        /* การ์ดเมนูด้านขวา */
        .menu-card {
            background-color: #2d3748;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 140px;
        }
        .menu-card:hover {
            background-color: #3b4961;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            color: white;
        }
        .menu-card i {
            font-size: 2rem;
            color: #cbd5e0;
            margin-bottom: 12px;
            transition: color 0.2s;
        }
        .menu-card:hover i {
            color: #63b3ed;
        }
    